Skip to content

Commit

Permalink
Checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
aherbert committed Sep 15, 2023
1 parent 6bb63cd commit f3c58a1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@ private JMenu createResultsMenu() {
final JMenu menu = new JMenu("Results");
menu.setMnemonic(KeyEvent.VK_R);
menu.add(resultsSave = add("Save ...", KeyEvent.VK_S, "ctrl pressed S"));
menu.add(resultsSaveSelection = add("Save Selection ...", KeyEvent.VK_E, "ctrl shift pressed S"));
menu.add(
resultsSaveSelection = add("Save Selection ...", KeyEvent.VK_E, "ctrl shift pressed S"));
menu.add(resultsShowInfo = add("Show Info", KeyEvent.VK_I, null));
return menu;
}
Expand Down

0 comments on commit f3c58a1

Please sign in to comment.