Skip to content

Commit ad84772

Browse files
authored
Re-add the "Manage Libraries..." item in its old place
Now "Manage Libraries" is available in its old place too (Sketch → Include Libraries → *Manage Libraries...*) Please note that this commit makes this item duplicated in the menu, because it's also available in "Tools → *Manage Libraries...*"
1 parent 4f3e2d9 commit ad84772

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: app/src/processing/app/Base.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,9 @@ public void rebuildImportMenu(JMenu importMenu) {
10691069
return;
10701070
importMenu.removeAll();
10711071

1072-
// Historical note: "Manage Libraries..." used to go here before v1.9.0
1072+
JMenuItem menu = new JMenuItem(tr("Manage Libraries..."));
1073+
menu.addActionListener(e -> openLibraryManager("", ""));
1074+
importMenu.add(menu);
10731075

10741076
importMenu.addSeparator();
10751077

0 commit comments

Comments
 (0)