Changeset 11381 in josm for trunk/src/org/openstreetmap/josm/actions/mapmode
- Timestamp:
- 2016-12-12T02:28:14+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions/mapmode
- Files:
-
- 2 edited
-
ImproveWayAccuracyAction.java (modified) (1 diff)
-
PlayHeadDragMode.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/ImproveWayAccuracyAction.java
r11144 r11381 401 401 updateStateByCurrentSelection(); 402 402 } 403 } else if (state == State.IMPROVING && mousePos != null) {403 } else if (state == State.IMPROVING) { 404 404 // Checking if the new coordinate is outside of the world 405 405 if (mv.getLatLon(mousePos.x, mousePos.y).isOutSideWorld()) { -
trunk/src/org/openstreetmap/josm/actions/mapmode/PlayHeadDragMode.java
r9067 r11381 66 66 67 67 @Override public void mouseReleased(MouseEvent ev) { 68 Point p = ev.getPoint();69 68 mouseStart = null; 70 if (ev.getButton() != MouseEvent.BUTTON1 || p == null ||!dragging)69 if (ev.getButton() != MouseEvent.BUTTON1 || !dragging) 71 70 return; 72 71
Note:
See TracChangeset
for help on using the changeset viewer.
