Changeset 25913 in osm for applications/editors/josm/plugins/utilsplugin2
- Timestamp:
- 2011-04-27T20:10:07+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/build.xml
r25817 r25913 33 33 <property name="commit.message" value="extend selection" /> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 <property name="plugin.main.version" value=" 3835" />35 <property name="plugin.main.version" value="4064" /> 36 36 37 37 -
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/UtilsPlugin2.java
r25898 r25913 26 26 JMenuItem intWays; 27 27 JMenuItem intWaysR; 28 JMenuItem undoSelection; 28 29 29 30 JMenuItem replaceGeometry; … … 60 61 selModifiedNodes = MainMenu.add(selectionMenu, new SelectModNodesAction()); 61 62 selModifiedWays = MainMenu.add(selectionMenu, new SelectModWaysAction()); 63 undoSelection = MainMenu.add(selectionMenu, new UndoSelectionAction()); 62 64 } 63 65 … … 85 87 selModifiedNodes.setEnabled(enabled); 86 88 selModifiedWays.setEnabled(enabled); 89 undoSelection.setEnabled(enabled); 87 90 } 88 91 }
Note:
See TracChangeset
for help on using the changeset viewer.