Changeset 6336 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2013-10-27T05:35:41+01:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/command
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/Command.java
r6333 r6336 86 86 */ 87 87 public Command() { 88 this.layer = Main. isDisplayingMapView() ? Main.map.mapView.getEditLayer(): null;88 this.layer = Main.main.getEditLayer(); 89 89 } 90 90 -
trunk/src/org/openstreetmap/josm/command/RelationMemberConflictResolverCommand.java
r6248 r6336 68 68 69 69 // remember the layer 70 layer = Main.ma p.mapView.getEditLayer();70 layer = Main.main.getEditLayer(); 71 71 return true; 72 72 } … … 89 89 90 90 Main.map.mapView.setActiveLayer(layer); 91 OsmDataLayer editLayer = Main.ma p.mapView.getEditLayer();91 OsmDataLayer editLayer = Main.main.getEditLayer(); 92 92 93 93 // restore the former state
Note:
See TracChangeset
for help on using the changeset viewer.