Ignore:
Timestamp:
2006-03-28T17:45:45+02:00 (18 years ago)
Author:
imi
Message:

fixed bug where lat/lon was exchanged in download dialog and quick fix for Java6 - gui problem

File:
1 edited

Legend:

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

    r71 r73  
    5858    private enum DownloadStatus {FINISHED, REDISPLAY}
    5959
     60    /**
     61     * minlat, minlon, maxlat, maxlon
     62     */
    6063        JTextField[] latlon = new JTextField[]{
    6164                        new JTextField(9),
     
    6871                super("Download from OSM", "download", "Download map data from the OSM server.", "Ctrl-Shift-D",
    6972                                KeyStroke.getKeyStroke(KeyEvent.VK_D, InputEvent.CTRL_DOWN_MASK | InputEvent.SHIFT_DOWN_MASK));
     73                // TODO remove when bug in Java6 is fixed
     74                for (JTextField f : latlon)
     75                        f.setMinimumSize(new Dimension(100,new JTextField().getMinimumSize().height));
    7076        }
    7177
Note: See TracChangeset for help on using the changeset viewer.