- Timestamp:
- 2009-09-12T23:09:38+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java
r2039 r2108 98 98 ta.setEditable(false); 99 99 JScrollPane sp = new JScrollPane(ta); 100 sp.setPreferredSize(new Dimension(600, 500));101 100 102 101 ExtendedDialog ed = new ExtendedDialog(Main.parent, … … 104 103 new String[] {tr("Copy to clipboard and close"), tr("Close") }); 105 104 ed.setButtonIcons(new String[] {"copy.png", "cancel.png" }); 106 ed.setContent(sp); 105 ed.setContent(sp, false); 106 ed.setMinimumSize(new Dimension(500, 0)); 107 107 ed.showDialog(); 108 108
Note:
See TracChangeset
for help on using the changeset viewer.