Changeset 4947 in josm
- Timestamp:
- 2012-02-15T23:08:25+01:00 (13 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/dialogs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/UserListDialog.java
r4674 r4947 68 68 public UserListDialog() { 69 69 super(tr("Authors"), "userlist", tr("Open a list of people working on the selected objects."), 70 Shortcut.registerShortcut("subwindow:authors", tr("Toggle: {0}", tr("Authors")), KeyEvent.VK_A, Shortcut.GROUP_LAYER , Shortcut.SHIFT_DEFAULT), 150);70 Shortcut.registerShortcut("subwindow:authors", tr("Toggle: {0}", tr("Authors")), KeyEvent.VK_A, Shortcut.GROUP_LAYER+Shortcut.GROUPS_ALT1), 150); 71 71 72 72 build(); -
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
r4888 r4947 633 633 super(tr("Properties/Memberships"), "propertiesdialog", tr("Properties for selected objects."), 634 634 Shortcut.registerShortcut("subwindow:properties", tr("Toggle: {0}", tr("Properties/Memberships")), KeyEvent.VK_P, 635 Shortcut.GROUP_LAYER , Shortcut.SHIFT_DEFAULT), 150, true);635 Shortcut.GROUP_LAYER+Shortcut.GROUPS_ALT1), 150, true); 636 636 637 637 // setting up the properties table … … 1040 1040 super(tr("Delete"), "dialogs/delete", tr("Delete the selected key in all objects"), 1041 1041 Shortcut.registerShortcut("properties:delete", tr("Delete Properties"), KeyEvent.VK_D, 1042 Shortcut.GROUP_ MNEMONIC), false);1042 Shortcut.GROUP_DIRECT3+Shortcut.GROUPS_ALT1), false); 1043 1043 updateEnabledState(); 1044 1044 } … … 1141 1141 super(tr("Add"), "dialogs/add", tr("Add a new key/value pair to all objects"), 1142 1142 Shortcut.registerShortcut("properties:add", tr("Add Property"), KeyEvent.VK_A, 1143 Shortcut.GROUP_ MNEMONIC), false);1143 Shortcut.GROUP_DIRECT2), false); 1144 1144 } 1145 1145 … … 1154 1154 super(tr("Edit"), "dialogs/edit", tr("Edit the value of the selected key for all objects"), 1155 1155 Shortcut.registerShortcut("properties:edit", tr("Edit Properties"), KeyEvent.VK_S, 1156 Shortcut.GROUP_ MNEMONIC), false);1156 Shortcut.GROUP_DIRECT2), false); 1157 1157 updateEnabledState(); 1158 1158 }
Note:
See TracChangeset
for help on using the changeset viewer.