1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-03-09 13:59:49 -04:00

* Open Getting Started by pressing F1

This commit is contained in:
Reinhard Pointner 2015-05-10 18:55:39 +00:00
parent 7e7cbf7e8b
commit 7269939ad3

View File

@ -145,6 +145,15 @@ public class MainFrame extends JFrame {
}
}
});
SwingUI.installAction(this.getRootPane(), getKeyStroke(VK_F1, 0), new AbstractAction("Help") {
@Override
public void actionPerformed(ActionEvent evt) {
GettingStartedStage.start();
}
});
}
public static PanelBuilder[] createPanelBuilders() {