Changeset 31023 in osm
- Timestamp:
- 2015-02-18T19:31:54+01:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/build.xml
r31021 r31023 12 12 <property name="plugin.icon" value="images/utils.png"/> 13 13 <property name="plugin.link" value="http://josm.openstreetmap.de/wiki/Help/Plugin/UtilsPlugin2"/> 14 <property name="plugin.canloadatruntime" value=" false"/>14 <property name="plugin.canloadatruntime" value="true"/> 15 15 <property name="plugin.stage" value="40"/> 16 16 -
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.