Changeset 27813 in osm for applications


Ignore:
Timestamp:
2012-02-16T21:45:20+01:00 (13 years ago)
Author:
stoecker
Message:

fix some shortcut conflicts

Location:
applications/editors/josm/plugins/reltoolbox
Files:
4 edited

Legend:

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

    r26990 r27813  
    3232    <property name="commit.message" value="RelToolbox"/>
    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="4928"/>
    3535    <!--
    3636      ************************************************
  • applications/editors/josm/plugins/reltoolbox/src/relcontext/RelContextDialog.java

    r27465 r27813  
    101101        });
    102102        roleBox.setVisible(false);
    103         final Action enterRoleAction = new EnterRoleAction(); // just for the shorcut
     103        final Action enterRoleAction = new EnterRoleAction(); // just for the shortcut
    104104
    105105        // [±][X] relation U [AZ][Down][Edit]
  • applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/CreateRelationAction.java

    r25727 r27813  
    3939        super(tr("New"), "data/relation", tr("Create a relation from selected objects"),
    4040                Shortcut.registerShortcut("reltoolbox:create", tr("Relation Toolbox: {0}", tr("Create a new relation")),
    41                 KeyEvent.VK_C, Shortcut.GROUP_HOTKEY, Shortcut.SHIFT_DEFAULT), true);
     41                KeyEvent.VK_N, Shortcut.GROUP_HOTKEY+Shortcut.GROUPS_ALT2), true);
    4242        this.chRel = chRel;
    4343        updateEnabledState();
  • applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/FindRelationAction.java

    r25727 r27813  
    2929        super("Find", "relcontext/find", tr("Find a relation"),
    3030                Shortcut.registerShortcut("reltoolbox:find", tr("Relation Toolbox: {0}", tr("Find a relation")),
    31                 KeyEvent.VK_F, Shortcut.GROUP_HOTKEY), true);
     31                KeyEvent.VK_F, Shortcut.GROUP_HOTKEY+Shortcut.GROUPS_ALT2), true);
    3232        this.chRel = chRel;
    3333    }
Note: See TracChangeset for help on using the changeset viewer.