Changeset 7524 in josm for trunk/src/org
- Timestamp:
- 2014-09-11T16:00:49+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserDialogManager.java
r7025 r7524 12 12 import java.util.Map; 13 13 14 import javax.swing.JDialog; 15 import javax.swing.JFrame; 14 16 import javax.swing.JOptionPane; 15 17 import javax.swing.SwingUtilities; 18 import javax.swing.UIManager; 16 19 17 20 import org.openstreetmap.josm.Main; … … 52 55 placeOnScreen(dialog); 53 56 dialog.setVisible(true); 57 // Debug stuff for #10462 58 if (Main.isDebugEnabled()) { 59 Main.debug("#10462 - JDialog.isDefaultLookAndFeelDecorated: "+JDialog.isDefaultLookAndFeelDecorated()); 60 Main.debug("#10462 - JFrame.isDefaultLookAndFeelDecorated: "+JFrame.isDefaultLookAndFeelDecorated()); 61 Main.debug("#10462 - dialog.isUndecorated: "+dialog.isUndecorated()); 62 Main.debug("#10462 - LookAndFeel.getSupportsWindowDecorations: "+UIManager.getLookAndFeel().getSupportsWindowDecorations()); 63 Main.debug("#10462 - JRootPane.getWindowDecorationStyle: "+dialog.getRootPane().getWindowDecorationStyle()); 64 Main.debug("#10462 - Window.getIconImages: "+dialog.getIconImages()); 65 Main.debug("#10462 - Dialog.getTitle: "+dialog.getTitle()); 66 } 54 67 dialogs.put(id, dialog); 55 68 }
Note:
See TracChangeset
for help on using the changeset viewer.