Skip to content

Commit

Permalink
Fixed issue #1110.
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsschmidt1337 committed Sep 13, 2024
1 parent d948de7 commit 1ac4ba9
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2493,9 +2493,13 @@ public void run(final IProgressMonitor monitor) throws InvocationTargetException
}

for (DatFile df : dfsToOpen) {
txt.openNewDatFileTab(df, false);
if (df != Project.getFileToEdit()) {
txt.openNewDatFileTab(df, false);
}
}

txt.openNewDatFileTab(Project.getFileToEdit(), false);

Editor3DWindow.getWindow().setReviewingAPart(true, dfsToOpen);
if (dialog.isSaveAll()) {
NewOpenSaveProjectToolItem.saveAll(true);
Expand Down

0 comments on commit 1ac4ba9

Please sign in to comment.