Skip to content

Commit

Permalink
Correct wording for MarkAction
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Smock <[email protected]>
  • Loading branch information
tsmock committed Mar 1, 2023
1 parent be1d5fe commit 4a3c6be
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/org/openstreetmap/josm/plugins/todo/TodoDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ public void showNotify() {
@Override
public void hideNotify() {
SelectionEventManager.getInstance().removeSelectionListener(actAdd);
SelectionEventManager.getInstance().removeSelectionListener(actClearAndAdd);
SelectionEventManager.getInstance().removeSelectionListener(actMarkSelected);
}

Expand Down Expand Up @@ -448,9 +449,9 @@ private static class MarkAction extends JosmAction implements ListSelectionListe

MarkAction(TodoListModel model) {
super(
tr("Select all Unmarked and Zoom"),
"dialogs/zoom-best-fit",
tr("Select and zoom to all of the unmarked items in the todo list."),
tr("Mark"),
"dialogs/check",
tr("Mark the selected item in the todo list as done."),
Shortcut.registerShortcut("subwindow:todo:mark", tr("Mark element done"), KeyEvent.VK_CLOSE_BRACKET, Shortcut.DIRECT),
false
);
Expand Down

0 comments on commit 4a3c6be

Please sign in to comment.