Changeset 10633 in josm
- Timestamp:
- 2016-07-25T09:04:34+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/NotificationManager.java
r10611 r10633 154 154 if (currentNotificationPanel != null) { 155 155 currentNotificationPanel.setVisible(false); 156 ((JFrame) Main.parent).getLayeredPane().remove(currentNotificationPanel); 156 JFrame parent = (JFrame) Main.parent; 157 if (parent != null) { 158 parent.getLayeredPane().remove(currentNotificationPanel); 159 } 157 160 currentNotificationPanel = null; 158 161 }
Note:
See TracChangeset
for help on using the changeset viewer.