Changeset 27555 in osm for applications


Ignore:
Timestamp:
2012-01-22T15:35:06+01:00 (13 years ago)
Author:
akks
Message:

'FastDraw: shortcut parsing'

Location:
applications/editors/josm/plugins/FastDraw
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/FastDraw/build.xml

    r27019 r27555  
    3030<project name="FastDraw" default="dist" basedir=".">
    3131    <!-- 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"/>
    3333    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    34     <property name="plugin.main.version" value="4549"/>
     34    <property name="plugin.main.version" value="4667"/>
    3535    <!--
    3636      ************************************************
  • applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java

    r26599 r27555  
    9292
    9393    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));
    9897        line=new DrawnPolyLine();
    9998        cursorDraw = ImageProvider.getCursor("crosshair", null);
Note: See TracChangeset for help on using the changeset viewer.