Changeset 4552 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2011-10-31T16:01:59+01:00 (13 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/bbox/SlippyMapBBoxChooser.java
r4531 r4552 382 382 setDisplayToFitMapMarkers(); 383 383 zoomOut(); 384 repaint(); 384 385 } 385 386 } -
trunk/src/org/openstreetmap/josm/gui/download/DownloadDialog.java
r4380 r4552 11 11 import java.awt.FlowLayout; 12 12 import java.awt.Font; 13 import java.awt.Graphics; 13 14 import java.awt.GridBagConstraints; 14 15 import java.awt.GridBagLayout; … … 135 136 } 136 137 138 /* This should not be necessary, but if not here, repaint is not always correct in SlippyMap! */ 139 public void paint(Graphics g) { 140 tpDownloadAreaSelectors.getSelectedComponent().paint(g); 141 super.paint(g); 142 } 143 137 144 protected JPanel buildButtonPanel() { 138 145 JPanel pnl = new JPanel();
Note:
See TracChangeset
for help on using the changeset viewer.