Skip to content

Commit

Permalink
Merge pull request #90 from finos/mnemonic
Browse files Browse the repository at this point in the history
mnemonic
  • Loading branch information
punx120 authored Mar 19, 2022
2 parents b48674d + 1806b55 commit 2a46db2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/studio/ui/SearchPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ public SearchPanel(EditorPane editorPane) {
Action findAction = UserAction.create("Find", e -> find(true));
Action findBackAction = UserAction.create("Find Back", e -> find(false));
Action markAllAction = UserAction.create("Mark All", e -> markAll());
Action replaceAction = UserAction.create("Replace", e -> replace());
Action replaceAllAction = UserAction.create("Replace All", e -> replaceAll());
Action closeAction = UserAction.create("Close", e -> close());
Action replaceAction = UserAction.create("Replace", "Replace", KeyEvent.VK_R, e -> replace());
Action replaceAllAction = UserAction.create("Replace All", "Replace All", KeyEvent.VK_A, e -> replaceAll());
Action closeAction = UserAction.create("Close", "Close", KeyEvent.VK_C, e -> close());

JButton btnFind = new JButton(findAction);
JButton btnFindBack = new JButton(findBackAction);
Expand Down

0 comments on commit 2a46db2

Please sign in to comment.