Changeset 28556 in osm for applications/editors/josm/plugins/utilsplugin2
- Timestamp:
- 2012-08-16T11:16:33+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/build.xml
r28551 r28556 30 30 <project name="utilsplugin2" default="dist" basedir="."> 31 31 <!-- enter the SVN commit message --> 32 <property name="commit.message" value="Utilsplugin2: SplitObjects now can use line as a splitter"/>32 <property name="commit.message" value="Utilsplugin2: SplitObjects exception fix when closed way only is selected"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 34 <property name="plugin.main.version" value="4980"/> -
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/SplitObjectAction.java
r28551 r28556 170 170 return; 171 171 } 172 } else if (selectedWay != null && selectedNodes.isEmpty()) { 173 JOptionPane.showMessageDialog(Main.parent, 174 tr("The selected way is not a split way, please select split points or split way too."), 175 tr("Warning"), 176 JOptionPane.WARNING_MESSAGE); 177 return; 172 178 } 173 179
Note:
See TracChangeset
for help on using the changeset viewer.