Changeset 31023 in osm for applications/editors/josm/plugins/utilsplugin2/src
- Timestamp:
- 2015-02-18T19:31:54+01:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/TagBufferAction.java
r30737 r31023 25 25 super(TITLE, "dumbutils/tagbuffer", tr("Pastes tags of previously selected object(s)"), 26 26 Shortcut.registerShortcut("tools:tagbuffer", tr("Tool: {0}", tr("Copy tags from previous selection")), KeyEvent.VK_R, Shortcut.SHIFT) 27 , true); 27 , true, false); 28 installAdapters(); 28 29 } 29 30 -
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/TagSourceAction.java
r30737 r31023 25 25 super(TITLE, "dumbutils/sourcetag", tr("Add remembered source tag"), 26 26 Shortcut.registerShortcut("tools:sourcetag", tr("Tool: {0}", tr("Add Source Tag")), KeyEvent.VK_S, Shortcut.ALT_CTRL) 27 , true); 27 , true, false); 28 28 source = Main.pref.get("sourcetag.value"); 29 installAdapters(); 29 30 } 30 31
Note:
See TracChangeset
for help on using the changeset viewer.