Changeset 27852 in osm for applications/editors/josm/plugins/livegps/src
- Timestamp:
- 2012-02-18T13:40:52+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/livegps/src/livegps
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsDialog.java
r27830 r27852 45 45 super(tr("Live GPS"), "livegps", tr("Show GPS data."), 46 46 Shortcut.registerShortcut("subwindow:livegps", tr("Toggle: {0}", tr("Live GPS")), 47 KeyEvent.VK_G, Shortcut. GROUP_DIRECT3+Shortcut.GROUPS_ALT1), 100);47 KeyEvent.VK_G, Shortcut.ALT_CTRL_SHIFT), 100); 48 48 panel = new JPanel(); 49 49 panel.setLayout(new GridLayout(6,2)); -
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java
r26217 r27852 49 49 Shortcut.registerShortcut("menu:livegps:capture", tr( 50 50 "Menu: {0}", tr("Capture GPS Track")), 51 KeyEvent.VK_R, Shortcut. GROUP_MENU), true);51 KeyEvent.VK_R, Shortcut.CTRL), true); 52 52 } 53 53 … … 63 63 Shortcut.registerShortcut("edit:centergps", tr("Edit: {0}", 64 64 tr("Center Once")), KeyEvent.VK_HOME, 65 Shortcut. GROUP_EDIT), true);65 Shortcut.DIRECT), true); 66 66 } 67 67 … … 81 81 Shortcut.registerShortcut("menu:livegps:autocenter", tr( 82 82 "Menu: {0}", tr("Capture GPS Track")), 83 KeyEvent.VK_HOME, Shortcut. GROUP_MENU), true);83 KeyEvent.VK_HOME, Shortcut.CTRL), true); 84 84 } 85 85
Note:
See TracChangeset
for help on using the changeset viewer.