Changeset 35621 in osm for applications/editors
- Timestamp:
- 2020-10-26T09:32:10+01:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/comfort0/src/net/simon04/comfort0/EditLevel0LAction.java
r35620 r35621 11 11 import java.nio.file.Path; 12 12 import java.util.ArrayList; 13 import java.util.Collection; 13 14 import java.util.Collections; 14 15 import java.util.List; … … 46 47 "theta", 47 48 tr("Edit the selected objects in an external editor in the Level0L format"), 48 null, false );49 null, false, "EditLevel0LAction", true); 49 50 } 50 51 … … 56 57 Logging.error(ex); 57 58 } 59 } 60 61 @Override 62 protected void updateEnabledState() { 63 updateEnabledStateOnCurrentSelection(true); 64 } 65 66 @Override 67 protected void updateEnabledState(Collection<? extends OsmPrimitive> selection) { 68 setEnabled(selection != null && !selection.isEmpty()); 58 69 } 59 70
Note:
See TracChangeset
for help on using the changeset viewer.