Changeset 27847 in osm for applications/editors/josm/plugins/ext_tools
- Timestamp:
- 2012-02-17T23:09:13+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/ext_tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ext_tools/build.xml
r27569 r27847 32 32 <property name="commit.message" value="ExtTools: help shortcut paser, rebuild"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="4 847"/>34 <property name="plugin.main.version" value="4969"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/ext_tools/src/ext_tools/ExtToolAction.java
r27838 r27847 21 21 22 22 public ExtToolAction(ExtTool tool) { 23 super(tr(tool.name), "empty", tool.description, null 24 null, 25 ImageProvider.getCursor("crosshair", null)); 23 super(tr(tool.name), "empty", tool.description, 24 Shortcut.registerShortcut(tr("exttool:{0}", tool.name), tr("External Tool: {0}", tool.name), 25 KeyEvent.CHAR_UNDEFINED, Shortcut.NONE), 26 null, ImageProvider.getCursor("crosshair", null)); 26 27 this.tool = tool; 27 28 setEnabled(true);
Note:
See TracChangeset
for help on using the changeset viewer.