Skip to content

Commit

Permalink
fix: file order
Browse files Browse the repository at this point in the history
  • Loading branch information
sotasan committed Apr 17, 2024
1 parent c7296de commit 88b8e01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/sotasan/decompiler/menus/file/File.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ public File() {
setText(LanguageService.getTranslation("file"));

add(new FileOpenFile());
add(new FileNewInstance());
add(new JSeparator());
add(FileCloseTab.getINSTANCE());
add(new JSeparator());
add(new FileNewInstance());
add(new FileExit());
}

Expand Down

0 comments on commit 88b8e01

Please sign in to comment.