Changeset 2108 in josm for trunk


Ignore:
Timestamp:
2009-09-12T23:09:38+02:00 (15 years ago)
Author:
stoecker
Message:

applied #3470 - patch by xeen - better scroll handling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java

    r2039 r2108  
    9898        ta.setEditable(false);
    9999        JScrollPane sp = new JScrollPane(ta);
    100         sp.setPreferredSize(new Dimension(600, 500));
    101100
    102101        ExtendedDialog ed = new ExtendedDialog(Main.parent,
     
    104103                new String[] {tr("Copy to clipboard and close"), tr("Close") });
    105104        ed.setButtonIcons(new String[] {"copy.png", "cancel.png" });
    106         ed.setContent(sp);
     105        ed.setContent(sp, false);
     106        ed.setMinimumSize(new Dimension(500, 0));
    107107        ed.showDialog();
    108108
Note: See TracChangeset for help on using the changeset viewer.