Changeset 27852 in osm for applications/editors/josm/plugins/reltoolbox/src/relcontext
- Timestamp:
- 2012-02-18T13:40:52+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/reltoolbox/src/relcontext
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/RelContextDialog.java
r27818 r27852 545 545 super("…", null, tr("Enter role for selected members"), 546 546 Shortcut.registerShortcut("reltoolbox:changerole", tr("Relation Toolbox: {0}", tr("Enter role for selected members")), 547 KeyEvent.VK_R, Shortcut. GROUPS_ALT2+Shortcut.GROUP_DIRECT2), true);547 KeyEvent.VK_R, Shortcut.ALT_CTRL), true); 548 548 chosenRelation.addChosenRelationListener(this); 549 549 updateEnabledState(); -
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/AddRemoveMemberAction.java
r25751 r27852 34 34 super(null, "relcontext/addremove", tr("Add/remove members from the chosen relation"), 35 35 Shortcut.registerShortcut("reltoolbox:addremove", tr("Relation Toolbox: {0}", tr("Add/remove members from the chosen relation")), 36 KeyEvent.VK_EQUALS, Shortcut. GROUP_EDIT), true);36 KeyEvent.VK_EQUALS, Shortcut.DIRECT), true); 37 37 this.rel = rel; 38 38 rel.addChosenRelationListener(this); -
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/CreateMultipolygonAction.java
r26887 r27852 31 31 super("Multi", "data/multipolygon", tr("Create a multipolygon from selected objects"), 32 32 Shortcut.registerShortcut("reltoolbox:multipolygon", tr("Relation Toolbox: {0}", tr("Create multipolygon")), 33 KeyEvent.VK_B, Shortcut. GROUP_HOTKEY), true);33 KeyEvent.VK_B, Shortcut.CTRL), true); 34 34 this.chRel = chRel; 35 35 updateEnabledState(); -
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/CreateRelationAction.java
r27813 r27852 39 39 super(tr("New"), "data/relation", tr("Create a relation from selected objects"), 40 40 Shortcut.registerShortcut("reltoolbox:create", tr("Relation Toolbox: {0}", tr("Create a new relation")), 41 KeyEvent.VK_N, Shortcut. GROUP_HOTKEY+Shortcut.GROUPS_ALT2), true);41 KeyEvent.VK_N, Shortcut.ALT_CTRL), true); 42 42 this.chRel = chRel; 43 43 updateEnabledState(); -
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/FindRelationAction.java
r27813 r27852 29 29 super("Find", "relcontext/find", tr("Find a relation"), 30 30 Shortcut.registerShortcut("reltoolbox:find", tr("Relation Toolbox: {0}", tr("Find a relation")), 31 KeyEvent.VK_F, Shortcut. GROUP_HOTKEY+Shortcut.GROUPS_ALT2), true);31 KeyEvent.VK_F, Shortcut.ALT_CTRL), true); 32 32 this.chRel = chRel; 33 33 }
Note:
See TracChangeset
for help on using the changeset viewer.