Changeset 17157 in josm
- Timestamp:
- 2020-10-11T09:32:44+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions/mapmode
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/ExtrudeAction.java
r17141 r17157 295 295 map.mapView.addMouseListener(this); 296 296 map.mapView.addMouseMotionListener(this); 297 map.statusLine.setAutoLength(false); 297 298 ignoreNextKeyRelease = true; 298 299 map.keyDetector.addKeyListener(this); … … 555 556 joinNodesIfCollapsed(movingNodeList); 556 557 } 558 MainApplication.getMap().statusLine.setDist(getLayerManager().getEditDataSet().getSelectedWays()); 559 MainApplication.getMap().statusLine.repaint(); 557 560 558 561 updateKeyModifiers(e); -
trunk/src/org/openstreetmap/josm/actions/mapmode/MapMode.java
r17108 r17157 86 86 Config.getPref().removePreferenceChangeListener(this); 87 87 MainApplication.getMap().mapView.resetCursor(this); 88 MainApplication.getMap().statusLine.setAutoLength(true); 88 89 } 89 90 -
trunk/src/org/openstreetmap/josm/actions/mapmode/ParallelWayAction.java
r17108 r17157 189 189 MapFrame map = MainApplication.getMap(); 190 190 map.statusLine.setDist(-1); 191 map.statusLine.setAutoLength(true);192 191 map.keyDetector.removeModifierExListener(this); 193 192 removeWayHighlighting(sourceWays);
Note:
See TracChangeset
for help on using the changeset viewer.