Changeset 16892 in josm


Ignore:
Timestamp:
2020-08-14T23:45:58+02:00 (4 years ago)
Author:
simon04
Message:

SlippyMapChooser is no UI element

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/download/SlippyMapChooser.java

    r9576 r16892  
    99
    1010import javax.swing.ActionMap;
    11 import javax.swing.JPanel;
    1211
    1312import org.openstreetmap.josm.data.Bounds;
     
    2221 * @since 1390
    2322 */
    24 public class SlippyMapChooser extends JPanel implements DownloadSelection, PropertyChangeListener {
     23public class SlippyMapChooser implements DownloadSelection, PropertyChangeListener {
    2524
    2625    private DownloadDialog iGui;
     
    4645    public void setDownloadArea(Bounds area) {
    4746        pnlSlippyMapBBoxChooser.setBoundingBox(area);
    48         repaint();
    4947    }
    5048
     
    7573            // resize and center the DownloadDialog
    7674            iGui.setBounds((iScreenSize.width - w) / 2, (iScreenSize.height - h) / 2, w, h);
    77             repaint();
    7875        }
    7976    }
Note: See TracChangeset for help on using the changeset viewer.