Changeset 27817 in osm for applications/editors/josm/plugins
- Timestamp:
- 2012-02-16T21:59:52+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/junctionchecking/build.xml
r27119 r27817 27 27 <project name="junctionchecking" 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.build.dir" value="build"/> -
applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker/JunctionCheckDialog.java
r27465 r27817 48 48 super(tr("JunctionChecking"), "junctionchecker", tr("Open the junctionchecking window."), 49 49 Shortcut.registerShortcut("subwindow:junctionchecker", tr("Toggle: {0}", tr("junctions")), 50 KeyEvent.VK_ B, Shortcut.GROUP_LAYER,Shortcut.SHIFT_DEFAULT), 150);50 KeyEvent.VK_J, Shortcut.GROUP_LAYER+Shortcut.GROUPS_ALT1), 150); 51 51 plugin = junctionCheckerGuiPlugin; 52 52 //das Digraph Create Panel -
applications/editors/josm/plugins/openstreetbugs/build.xml
r27019 r27817 27 27 <project name="openstreetbugs" 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/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/gui/OsbDialog.java
r26299 r27817 115 115 tr("Opens the OpenStreetBugs window and activates the automatic download"), Shortcut.registerShortcut( 116 116 "view:openstreetbugs", tr("Toggle: {0}", tr("Open OpenStreetBugs")), KeyEvent.VK_B, 117 Shortcut.GROUP_LAYER ,Shortcut.SHIFT_DEFAULT), 150);117 Shortcut.GROUP_LAYER+Shortcut.GROUPS_ALT1), 150); 118 118 119 119 osbPlugin = plugin;
Note:
See TracChangeset
for help on using the changeset viewer.