- Timestamp:
- 2020-08-14T23:45:58+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/download/SlippyMapChooser.java
r9576 r16892 9 9 10 10 import javax.swing.ActionMap; 11 import javax.swing.JPanel;12 11 13 12 import org.openstreetmap.josm.data.Bounds; … … 22 21 * @since 1390 23 22 */ 24 public class SlippyMapChooser extends JPanelimplements DownloadSelection, PropertyChangeListener {23 public class SlippyMapChooser implements DownloadSelection, PropertyChangeListener { 25 24 26 25 private DownloadDialog iGui; … … 46 45 public void setDownloadArea(Bounds area) { 47 46 pnlSlippyMapBBoxChooser.setBoundingBox(area); 48 repaint();49 47 } 50 48 … … 75 73 // resize and center the DownloadDialog 76 74 iGui.setBounds((iScreenSize.width - w) / 2, (iScreenSize.height - h) / 2, w, h); 77 repaint();78 75 } 79 76 }
Note:
See TracChangeset
for help on using the changeset viewer.