Changeset 27766 in osm
- Timestamp:
- 2012-02-15T21:39:20+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerAction.java
r27765 r27766 52 52 super(name, "lakewalker-sml", tr("Lake Walker."), 53 53 Shortcut.registerShortcut("tools:lakewalker", tr("Tool: {0}", tr("Lake Walker")), 54 KeyEvent.VK_L, Shortcut.GROUP_DIRECT 2+Shortcut.GROUPS_ALT2), true);54 KeyEvent.VK_L, Shortcut.GROUP_DIRECT3+Shortcut.GROUPS_ALT1), true); 55 55 this.name = name; 56 56 setEnabled(true); -
applications/editors/josm/plugins/licensechange/build.xml
r27218 r27766 26 26 --> 27 27 <property name="commit.message" value=""/> 28 <property name="plugin.main.version" value="4 394"/>28 <property name="plugin.main.version" value="4928"/> 29 29 <property name="josm" location="../../core/dist/josm-custom.jar"/> 30 30 <property name="plugin.dist.dir" value="../../dist"/> -
applications/editors/josm/plugins/licensechange/src/org/openstreetmap/josm/plugins/licensechange/LicenseChangeDialog.java
r27359 r27766 76 76 super(tr("Relicensing problems"), "licensechange", tr("Open the relicensing window."), 77 77 Shortcut.registerShortcut("subwindow:licensechange", tr("Toggle: {0}", tr("Relicensing problems")), 78 KeyEvent.VK_L, Shortcut.GROUP_ LAYER, Shortcut.SHIFT_DEFAULT), 150);78 KeyEvent.VK_L, Shortcut.GROUP_DIRECT2+Shortcut.GROUPS_ALT2), 150); 79 79 80 80 this.plugin = plugin; -
applications/editors/josm/plugins/piclayer/src/org/openstreetmap/josm/plugins/piclayer/PicLayerPlugin.java
r27662 r27766 74 74 // Create menu entry 75 75 if ( Main.main.menu != null ) { 76 menu = Main.main.menu.addMenu(marktr("PicLayer") , KeyEvent.VK_ Y, Main.main.menu.defaultMenuPos, ht("/Plugin/PicLayer"));76 menu = Main.main.menu.addMenu(marktr("PicLayer") , KeyEvent.VK_L, Main.main.menu.defaultMenuPos, ht("/Plugin/PicLayer")); 77 77 } 78 78 -
applications/editors/josm/plugins/reverter/src/reverter/ReverterPlugin.java
r27765 r27766 19 19 public ReverterPlugin(PluginInformation info) { 20 20 super(info); 21 JMenu historyMenu = Main.main.menu.addMenu(marktr("History"), KeyEvent.VK_ L,21 JMenu historyMenu = Main.main.menu.addMenu(marktr("History"), KeyEvent.VK_Y, 22 22 Main.main.menu.defaultMenuPos,ht("/Plugin/Reverter")); 23 23 //MainMenu.add(historyMenu, new ObjectsHistoryAction());
Note:
See TracChangeset
for help on using the changeset viewer.