Ticket #3128: always-on-top.patch
| File always-on-top.patch, 769 bytes (added by , 16 years ago) |
|---|
-
src/org/openstreetmap/josm/gui/PleaseWaitDialog.java
57 57 // make sure this dialog is always on top of the main JOSM window 58 58 // and all the other windows (relation editors, detached dialogs, etc.) 59 59 // 60 try { 61 setAlwaysOnTop(true); 62 } catch(SecurityException e) { 63 System.out.println(tr("Warning: failed to put ''please wait dialog'' always on top. Exception was: {0}", e.toString())); 64 } 60 toFront(); 65 61 } 66 62 67 63 public PleaseWaitDialog(Frame parent) {
