(String title, int what)
| 1348 | */ |
| 1349 | // Control + Shift + K seems to not be working on linux (Xubuntu 17.04, 2017-08-19) |
| 1350 | static public JMenuItem newJMenuItemShift(String title, int what) { |
| 1351 | JMenuItem menuItem = new JMenuItem(title); |
| 1352 | menuItem.setAccelerator(KeyStroke.getKeyStroke(what, SHORTCUT_KEY_MASK | ActionEvent.SHIFT_MASK)); |
| 1353 | return menuItem; |
| 1354 | } |
| 1355 | |
| 1356 | |
| 1357 | /** |
no outgoing calls
no test coverage detected