From 736276456dff1f427e4ae69441c87dd5ac0a14cf Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Tue, 5 Jul 2022 01:29:43 +0000 Subject: [PATCH] Fix rename crash in NAT --- projects/nat-archive-tool/src/nat/ArchiveController.kiss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/nat-archive-tool/src/nat/ArchiveController.kiss b/projects/nat-archive-tool/src/nat/ArchiveController.kiss index 8020450a..8a4e4e05 100644 --- a/projects/nat-archive-tool/src/nat/ArchiveController.kiss +++ b/projects/nat-archive-tool/src/nat/ArchiveController.kiss @@ -218,7 +218,8 @@ (defCommand Rename [e SelectedEntry newName (Text null)] (withWritableComponents archive e [name Name] - (set name newName))) + (set name newName)) + [e]) (defCommand PrintSelectedEntries [entries (SelectedEntries null null)] (doFor e entries (ui.displayMessage (archive.fullString e))) [])