Add Menu+Shift+I shortcut to the Library Manager

Please note that this commit actually adds the shortcut to its menu
entry under the "Tools" menu.

As a side effect, the shortcut tip is only shown in this entry and not
on the another one.

Menu usually means the Ctrl key on most modern systems.
This commit is contained in:
Flavio Monteiro 2017-09-14 23:46:32 -03:00 committed by Cristian Maglie
parent d860c907bb
commit f8621b0421
1 changed files with 1 additions and 1 deletions

View File

@ -731,7 +731,7 @@ public class Editor extends JFrame implements RunnerListener {
addInternalTools(toolsMenu);
JMenuItem item = new JMenuItem(tr("Manage Libraries..."));
JMenuItem item = newJMenuItemShift(tr("Manage Libraries..."), 'I');
item.addActionListener(e -> base.openLibraryManager("", ""));
toolsMenu.add(item);