Changeset 18288 in josm
- Timestamp:
- 2021-10-21T01:40:33+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ChildRelationBrowser.java
r17202 r18288 212 212 /** 213 213 * Action for editing the currently selected relation 214 *215 *216 214 */ 217 215 class EditAction extends AbstractAction implements TreeSelectionListener { … … 235 233 for (int i = 0; i < Math.min(selection.length, 10); i++) { 236 234 Relation r = (Relation) selection[i].getLastPathComponent(); 237 if ( r.isIncomplete()) {235 if (!r.isUsable()) { 238 236 continue; 239 237 }
Note:
See TracChangeset
for help on using the changeset viewer.