Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit 5aec6ee

Browse files
committed
fixed editor crashing when calling CloseAll on close
1 parent 128513a commit 5aec6ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UI/MainWindow/MainWindow.xaml.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -559,11 +559,11 @@ private void CloseProgram(bool saveAll)
559559

560560
if (saveAll)
561561
{
562-
EditorReferences.ForEach(x => x.Close(true));
562+
EditorReferences.ToList().ForEach(x => x.Close(true));
563563
}
564564
else
565565
{
566-
EditorReferences.ForEach(x => x.Close(false, false));
566+
EditorReferences.ToList().ForEach(x => x.Close(false, false));
567567
}
568568

569569
// Kill children process from "Server Start" feature

0 commit comments

Comments
 (0)