Changeset 9570 in osm for applications/editors/josm/plugins/slippy_map_chooser
- Timestamp:
- 2008-08-08T17:55:49+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/slippy_map_chooser/src/OsmMapControl.java
r9567 r9570 67 67 } 68 68 } 69 69 70 } 70 71 71 public void mouseDragged(MouseEvent e) { 72 if ( (e.getModifiersEx() | MouseEvent.BUTTON1_DOWN_MASK) != 0) {73 if (iStartSelectionPoint != null) { 72 public void mouseDragged(MouseEvent e) { 73 if (e.getButton() == MouseEvent.BUTTON1 ) { 74 if (iStartSelectionPoint != null) { 74 75 iEndSelectionPoint = e.getPoint(); 75 76 iSlippyMapChooser.setSelection(iStartSelectionPoint, iEndSelectionPoint);
Note:
See TracChangeset
for help on using the changeset viewer.