Skip to content

Commit 4647e5e

Browse files
committed
fix shortcut parsing hints
1 parent 0c4a889 commit 4647e5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/main/java/org/openstreetmap/josm/plugins/mapillary/gui/imageinfo/ClipboardAction.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ public class ClipboardAction extends MapillaryAction {
6363
*/
6464
public ClipboardAction(final String name, final String successMessage, final Transferable contents) {
6565
super(tr(name), "copy", tr("Copy {0} to clipboard", tr(name)),
66-
Shortcut.registerShortcut("mapillary:copy_to_clipboard_" + name.replace(' ', '_'),
67-
/* NO-SHORTCUT - add definition in classes using ClipboardAction */
66+
Shortcut.registerShortcut(/* NO-SHORTCUT - add definition in classes using ClipboardAction */
67+
"mapillary:copy_to_clipboard_" + name.replace(' ', '_'),
6868
tr("Mapillary: {0}", tr(name)), KeyEvent.CHAR_UNDEFINED, Shortcut.NONE),
6969
false, "mapillary:copy_to_clipboard_" + name.replace(' ', '_'), false);
7070
this.contents = contents;

0 commit comments

Comments
 (0)