Changeset 27826 in osm for applications/editors/josm/plugins/FastDraw
- Timestamp:
- 2012-02-17T17:12:24+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/FastDraw
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FastDraw/build.xml
r27555 r27826 32 32 <property name="commit.message" value="FastDraw: shortcut parsing"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="4 667"/>34 <property name="plugin.main.version" value="4928"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java
r27590 r27826 93 93 FastDrawingMode(MapFrame mapFrame) { 94 94 super(tr("FastDrawing"), "turbopen.png", tr("Fast drawing mode"), 95 Shortcut.registerShortcut("mapmode:fastdraw", tr("Mode: {0}", tr("Fast drawing mode")), KeyEvent.VK_T, Shortcut.GROUP_ EDIT)95 Shortcut.registerShortcut("mapmode:fastdraw", tr("Mode: {0}", tr("Fast drawing mode")), KeyEvent.VK_T, Shortcut.GROUP_DIRECT3+Shortcut.GROUPS_ALT1) 96 96 ,mapFrame, Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)); 97 97 line=new DrawnPolyLine();
Note:
See TracChangeset
for help on using the changeset viewer.