Changeset 34915 in osm for applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap
- Timestamp:
- 2019-03-08T01:14:06+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/latlon/LatLonAction.java
r34454 r34915 83 83 cmds.add(new AddCommand(ds, wnew)); 84 84 } 85 UndoRedoHandler.getInstance().add(new SequenceCommand(tr("Lat Lon tool"), cmds)); 86 MainApplication.getMap().mapView.repaint(); 85 if (!cmds.isEmpty()) { 86 UndoRedoHandler.getInstance().add(new SequenceCommand(tr("Lat Lon tool"), cmds)); 87 MainApplication.getMap().mapView.repaint(); 88 } 87 89 } 88 90
Note:
See TracChangeset
for help on using the changeset viewer.