Changeset 27555 in osm for applications
- Timestamp:
- 2012-01-22T15:35:06+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
r27019 r27555 30 30 <project name="FastDraw" default="dist" basedir="."> 31 31 <!-- enter the SVN commit message --> 32 <property name="commit.message" value="FastDraw: recompile due to core change"/>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 549"/>34 <property name="plugin.main.version" value="4667"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java
r26599 r27555 92 92 93 93 FastDrawingMode(MapFrame mapFrame) { 94 super(tr("FastDrawing"), "turbopen.png", tr("Fast drawing mode"), Shortcut.registerShortcut( 95 "mapmode/building", 96 tr("Mode: {0}", tr("Fast drawing mode")), 97 KeyEvent.VK_T, Shortcut.GROUP_EDIT), mapFrame, Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)); 94 super(tr("FastDrawing"), "turbopen.png", tr("Fast drawing mode"), 95 Shortcut.registerShortcut("mapmode/building", tr("Mode: {0}", tr("Fast drawing mode")), KeyEvent.VK_T, Shortcut.GROUP_EDIT) 96 ,mapFrame, Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)); 98 97 line=new DrawnPolyLine(); 99 98 cursorDraw = ImageProvider.getCursor("crosshair", null);
Note:
See TracChangeset
for help on using the changeset viewer.