Changeset 27813 in osm for applications/editors/josm/plugins/reltoolbox
- Timestamp:
- 2012-02-16T21:45:20+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/reltoolbox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/build.xml
r26990 r27813 32 32 <property name="commit.message" value="RelToolbox"/> 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="4928"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/reltoolbox/src/relcontext/RelContextDialog.java
r27465 r27813 101 101 }); 102 102 roleBox.setVisible(false); 103 final Action enterRoleAction = new EnterRoleAction(); // just for the shor cut103 final Action enterRoleAction = new EnterRoleAction(); // just for the shortcut 104 104 105 105 // [±][X] relation U [AZ][Down][Edit] -
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/CreateRelationAction.java
r25727 r27813 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_ C, Shortcut.GROUP_HOTKEY, Shortcut.SHIFT_DEFAULT), true);41 KeyEvent.VK_N, Shortcut.GROUP_HOTKEY+Shortcut.GROUPS_ALT2), true); 42 42 this.chRel = chRel; 43 43 updateEnabledState(); -
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/FindRelationAction.java
r25727 r27813 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 ), true);31 KeyEvent.VK_F, Shortcut.GROUP_HOTKEY+Shortcut.GROUPS_ALT2), true); 32 32 this.chRel = chRel; 33 33 }
Note:
See TracChangeset
for help on using the changeset viewer.