Changeset 27927 in osm for applications/editors/josm/plugins/turnlanes
- Timestamp:
- 2012-02-23T10:17:25+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/turnlanes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/turnlanes/build.xml
r27889 r27927 30 30 <project name="turnlanes" default="dist" basedir="."> 31 31 <!-- enter the SVN commit message --> 32 <property name="commit.message" value=" Commit message"/>32 <property name="commit.message" value="fix toolbar warnings - toolbar still does not work"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value=" 4980"/>34 <property name="plugin.main.version" value="5018"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/turnlanes/src/org/openstreetmap/josm/plugins/turnlanes/gui/TurnLanesDialog.java
r26299 r27927 47 47 super(tr("Edit"), "dialogs/edit", tr("Edit turn relations and lane lengths for selected node."), null, 48 48 false); 49 putValue("toolbar", "turnlanes/edit"); 50 Main.toolbar.register(this); 49 //putValue("toolbar", "turnlanes/edit"); Main.toolbar.register(this); 50 // did not work in 5018 51 51 52 } 52 53 … … 67 68 super(tr("Validate"), "dialogs/validator", tr("Validate turn- and lane-length-relations for consistency."), 68 69 null, false); 69 putValue("toolbar", "turnlanes/validate"); 70 Main.toolbar.register(this); 70 // putValue("toolbar", "turnlanes/validate"); Main.toolbar.register(this); 71 // did not work in 5018 71 72 } 72 73
Note:
See TracChangeset
for help on using the changeset viewer.