Changeset 6124 in josm for trunk/src/org
- Timestamp:
 - 2013-08-09T12:39:02+02:00 (12 years ago)
 - Location:
 - trunk/src/org/openstreetmap/josm
 - Files:
 - 
      
- 2 added
 - 1 edited
 
- 
          
  actions/CreateCircleAction.java (modified) (2 diffs)
 - 
          
  gui/Notification.java (added)
 - 
          
  gui/NotificationManager.java (added)
 
 
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.
  