From a6bc1cabf63ff10a31fc81810daa7a972eaa8b7d Mon Sep 17 00:00:00 2001 From: JMLF Date: Fri, 6 Mar 2026 14:56:11 +0100 Subject: [PATCH] shallow copy was done on the collection thus not copying underling objects --- src/MooseIDE-QueriesBrowser/MiSaveQueriesCommand.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MooseIDE-QueriesBrowser/MiSaveQueriesCommand.class.st b/src/MooseIDE-QueriesBrowser/MiSaveQueriesCommand.class.st index e958703b3..65c93ede6 100644 --- a/src/MooseIDE-QueriesBrowser/MiSaveQueriesCommand.class.st +++ b/src/MooseIDE-QueriesBrowser/MiSaveQueriesCommand.class.st @@ -60,7 +60,7 @@ MiSaveQueriesCommand >> copyQueriesReferencesOf: queries [ "We don't want to do that on the original queries to keep the queries browser still running" | copy | - copy := queries copy. + copy := queries collect: [:each | each copy]. ^ copy ]