Changeset 6994 in josm
- Timestamp:
- 2014-04-22T13:05:26+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/UndoRedoHandler.java
r6986 r6994 8 8 import org.openstreetmap.josm.Main; 9 9 import org.openstreetmap.josm.command.Command; 10 import org.openstreetmap.josm.data.osm.DataSet; 10 11 import org.openstreetmap.josm.data.osm.OsmPrimitive; 11 12 import org.openstreetmap.josm.gui.MapView; … … 55 56 56 57 // the command may have changed the selection so tell the listeners about the current situation 57 Main.main.getCurrentDataSet().fireSelectionChanged(); 58 DataSet ds = Main.main.getCurrentDataSet(); 59 if (ds != null) { 60 ds.fireSelectionChanged(); 61 } 58 62 } 59 63
Note:
See TracChangeset
for help on using the changeset viewer.