- Timestamp:
- 2019-07-06T00:52:27+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ImageDisplay.java
r14590 r15204 550 550 return; 551 551 552 if (mouseIsDragging(e) ) {552 if (mouseIsDragging(e) && mousePointInImg != null) { 553 553 Point p = comp2imgCoord(visibleRect, e.getX(), e.getY(), getSize()); 554 554 visibleRect.isDragUpdate = true; … … 564 564 } 565 565 566 if (mouseIsZoomSelecting(e) ) {566 if (mouseIsZoomSelecting(e) && mousePointInImg != null) { 567 567 Point p = comp2imgCoord(visibleRect, e.getX(), e.getY(), getSize()); 568 568 visibleRect.checkPointInside(p);
Note:
See TracChangeset
for help on using the changeset viewer.