- Timestamp:
- 2018-09-28T01:09:23+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ChildRelationBrowser.java
r14153 r14277 97 97 && childTree.getRowForLocation(e.getX(), e.getY()) == childTree.getMinSelectionRow()) { 98 98 Relation r = (Relation) childTree.getLastSelectedPathComponent(); 99 if (r .isIncomplete()) {99 if (r != null && r.isIncomplete()) { 100 100 childTree.expandPath(childTree.getSelectionPath()); 101 101 } else {
Note:
See TracChangeset
for help on using the changeset viewer.