Changeset 6124 in josm
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/CreateCircleAction.java
r6106 r6124 24 24 import org.openstreetmap.josm.data.osm.OsmPrimitive; 25 25 import org.openstreetmap.josm.data.osm.Way; 26 import org.openstreetmap.josm.gui.Notification; 26 27 import org.openstreetmap.josm.tools.Shortcut; 27 28 … … 263 264 264 265 } else { 265 JOptionPane.showMessageDialog( 266 Main.parent, 267 tr("Please select exactly two or three nodes or one way with exactly two or three nodes."), 268 tr("Information"), 269 JOptionPane.INFORMATION_MESSAGE 270 ); 266 Notification note = new Notification(); 267 note.setContent(tr("Please select exactly two or three nodes or one way with exactly two or three nodes.")); 268 note.setIcon(JOptionPane.INFORMATION_MESSAGE); 269 note.show(); 271 270 return; 272 271 }
Note:
See TracChangeset
for help on using the changeset viewer.