Changeset 5013 in josm


Ignore:
Timestamp:
2012-02-21T19:14:57+01:00 (12 years ago)
Author:
akks
Message:

Validation on upload and error reporting windows did not fit in 800x600

Location:
trunk/src/org/openstreetmap/josm
Files:
2 edited

Legend:

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

    r4310 r5013  
    22package org.openstreetmap.josm.actions.upload;
    33
     4import java.awt.Dimension;
    45import static org.openstreetmap.josm.tools.I18n.tr;
    56
     
    129130                + "</table>"
    130131        );
     132        pnlMessage.setPreferredSize(new Dimension(500, 150));
    131133        p.add(pnlMessage, GBC.eol());
    132134        p.add(new JScrollPane(errorPanel), GBC.eol().fill(GBC.BOTH));
  • trunk/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java

    r4743 r5013  
    143143                            }
    144144
    145                             JTextArea info = new JTextArea(text, 20, 60);
     145                            JTextArea info = new JTextArea(text, 18, 60);
    146146                            info.setCaretPosition(0);
    147147                            info.setEditable(false);
Note: See TracChangeset for help on using the changeset viewer.