Ignore:
Timestamp:
2012-02-17T17:12:24+01:00 (13 years ago)
Author:
stoecker
Message:

fix shortcut conflicts

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

Legend:

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

    r27555 r27826  
    3232    <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="4667"/>
     34    <property name="plugin.main.version" value="4928"/>
    3535    <!--
    3636      ************************************************
  • applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java

    r27590 r27826  
    9393    FastDrawingMode(MapFrame mapFrame) {
    9494        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)
    9696                ,mapFrame, Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    9797        line=new DrawnPolyLine();
Note: See TracChangeset for help on using the changeset viewer.