Changeset 33530 in osm for applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/EditChosenRelationAction.java
- Timestamp:
- 2017-08-26T02:16:05+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/EditChosenRelationAction.java
r32398 r33530 8 8 import javax.swing.AbstractAction; 9 9 10 import org.openstreetmap.josm.Main;11 10 import org.openstreetmap.josm.data.osm.Relation; 11 import org.openstreetmap.josm.gui.MainApplication; 12 12 import org.openstreetmap.josm.gui.dialogs.relation.RelationEditor; 13 13 import org.openstreetmap.josm.tools.ImageProvider; … … 36 36 Relation relation = rel.get(); 37 37 if (relation == null) return; 38 RelationEditor.getEditor(Main.getLayerManager().getEditLayer(), relation, null).setVisible(true); 38 RelationEditor.getEditor(MainApplication.getLayerManager().getEditLayer(), relation, null).setVisible(true); 39 39 } 40 40
Note:
See TracChangeset
for help on using the changeset viewer.
