Changeset 27765 in osm for applications/editors/josm
- Timestamp:
- 2012-02-15T20:55:40+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/lakewalker/build.xml
r27019 r27765 27 27 <project name="lakewalker" default="dist" basedir="."> 28 28 <property name="commit.message" value="Changed the constructor signature of the plugin main class"/> 29 <property name="plugin.main.version" value="4 549"/>29 <property name="plugin.main.version" value="4928"/> 30 30 <property name="josm" location="../../core/dist/josm-custom.jar"/> 31 31 <property name="plugin.dist.dir" value="../../dist"/> -
applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerAction.java
r23190 r27765 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_ EDIT, Shortcut.SHIFT_DEFAULT), true);54 KeyEvent.VK_L, Shortcut.GROUP_DIRECT2+Shortcut.GROUPS_ALT2), true); 55 55 this.name = name; 56 56 setEnabled(true); -
applications/editors/josm/plugins/reverter/src/reverter/ReverterPlugin.java
r27604 r27765 19 19 public ReverterPlugin(PluginInformation info) { 20 20 super(info); 21 JMenu historyMenu = Main.main.menu.addMenu(marktr("History"), KeyEvent.VK_ Y,21 JMenu historyMenu = Main.main.menu.addMenu(marktr("History"), KeyEvent.VK_L, 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.