Changeset 27618 in osm for applications/editors/josm/plugins
- Timestamp:
- 2012-01-25T09:14:36+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2
- Files:
-
- 6 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/README
r25876 r27618 12 12 * Selection actions (by akks) 13 13 14 * Curves - Draw Arc (by olejorgenb) 15 14 16 * Paste Relations, Replace Geometry and other actions (by Zverik) 15 17 -
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/UtilsPlugin2.java
r27443 r27618 12 12 import utilsplugin2.selection.*; 13 13 import utilsplugin2.dumbutils.*; 14 import utilsplugin2.curves.*; 14 15 15 16 import org.openstreetmap.josm.Main; … … 51 52 52 53 JMenuItem selectURL; 54 55 JMenuItem drawArc; 53 56 54 57 public UtilsPlugin2(PluginInformation info) { … … 89 92 90 93 selectURL = MainMenu.add(toolsMenu, new ChooseURLAction()); 91 94 drawArc = MainMenu.add(toolsMenu, new CurveAction()); 92 95 93 96 } … … 122 125 selectURL.setEnabled(enabled); 123 126 allInside.setEnabled(enabled); 127 128 drawArc.setEnabled(enabled); 124 129 } 130 125 131 @Override 126 132 public PreferenceSetting getPreferenceSetting() {
Note:
See TracChangeset
for help on using the changeset viewer.