Skip to content

Commit

Permalink
Move go submenu to after File. (#64)
Browse files Browse the repository at this point in the history
* Update dummy.

* Remove dummy.
  • Loading branch information
robinjhuang authored Sep 27, 2024
1 parent c175d26 commit 5afe4c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,6 @@ function buildMenu(userResourcesPath: string): Menu {
);
}

menu.append(new MenuItem({ label: 'Go', submenu: goMenu }));

if (!isMac) {
menu.append(
new MenuItem({
Expand All @@ -125,6 +123,8 @@ function buildMenu(userResourcesPath: string): Menu {
);
}

menu.append(new MenuItem({ label: 'Go', submenu: goMenu }));

return menu;
}

Expand Down

0 comments on commit 5afe4c6

Please sign in to comment.