Changeset 11488 in josm
- Timestamp:
- 2017-01-22T21:57:07+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/SimplifyWayAction.java
r11385 r11488 18 18 19 19 import javax.swing.JOptionPane; 20 import javax.swing.SwingUtilities; 20 21 21 22 import org.openstreetmap.josm.Main; … … 55 56 56 57 protected void alertSelectAtLeastOneWay() { 57 new Notification( 58 tr("Please select at least one way to simplify.")) 59 .setIcon(JOptionPane.WARNING_MESSAGE) 60 .setDuration(Notification.TIME_SHORT) 61 .setHelpTopic(ht("/Action/SimplifyWay#SelectAWayToSimplify")) 62 .show(); 58 SwingUtilities.invokeLater(() -> 59 new Notification( 60 tr("Please select at least one way to simplify.")) 61 .setIcon(JOptionPane.WARNING_MESSAGE) 62 .setDuration(Notification.TIME_SHORT) 63 .setHelpTopic(ht("/Action/SimplifyWay#SelectAWayToSimplify")) 64 .show() 65 ); 63 66 } 64 67
Note:
See TracChangeset
for help on using the changeset viewer.