Ticket #13296: 13296.patch
File 13296.patch, 660 bytes (added by , 9 years ago) |
---|
-
src/org/openstreetmap/josm/actions/search/SearchCompiler.java
diff --git a/src/org/openstreetmap/josm/actions/search/SearchCompiler.java b/src/org/openstreetmap/josm/actions/search/SearchCompiler.java index df64a1c..e1f6e4d 100644
a b public String toString() { 1302 1302 private static class Incomplete extends Match { 1303 1303 @Override 1304 1304 public boolean match(OsmPrimitive osm) { 1305 return osm.isIncomplete() ;1305 return osm.isIncomplete() || (osm instanceof Relation && ((Relation) osm).hasIncompleteMembers()); 1306 1306 } 1307 1307 1308 1308 @Override