Changeset 3211 in josm for trunk/src/org
- Timestamp:
- 2010-04-27T13:32:12+02:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/dialogs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/DialogsPanel.java
r3198 r3211 82 82 reconstruct(Action.INVISIBLE_TO_DEFAULT, dlg); 83 83 } 84 dlg.showNotify(); 84 85 } else { 85 86 dlg.hideDialog(); -
trunk/src/org/openstreetmap/josm/gui/dialogs/ToggleDialog.java
r3186 r3211 146 146 hideDialog(); 147 147 dialogsPanel.reconstruct(Action.ELEMENT_SHRINKS, null); 148 hideNotify(); 148 149 } else { 149 150 showDialog(); … … 154 155 dialogsPanel.reconstruct(Action.INVISIBLE_TO_DEFAULT, ToggleDialog.this); 155 156 } 157 showNotify(); 156 158 } 157 159 } … … 178 180 toggleAction.putValue("selected", false); 179 181 toggleAction.putValue("selected", true); 180 showNotify();181 182 } 182 183 … … 200 201 dialogsPanel.reconstruct(Action.INVISIBLE_TO_DEFAULT, this); 201 202 } 203 showNotify(); 202 204 } 203 205 } … … 211 213 setIsShowing(false); 212 214 toggleAction.putValue("selected", false); 213 hideNotify();214 215 } 215 216 … … 393 394 hideDialog(); 394 395 dialogsPanel.reconstruct(Action.ELEMENT_SHRINKS, null); 396 hideNotify(); 395 397 } 396 398 } … … 432 434 } else { 433 435 hideDialog(); 436 hideNotify(); 434 437 } 435 438 }
Note:
See TracChangeset
for help on using the changeset viewer.