Changeset 17042 in josm
- Timestamp:
- 2020-09-19T14:07:13+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/autofilter/AutoFilterManager.java
r17040 r17042 224 224 225 225 private void removeAllButtons() { 226 MapFrame map = MainApplication.getMap();226 MapFrame map = MainApplication.getMap(); 227 227 if (map != null) { 228 228 buttons.values().forEach(map.mapView::remove); -
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Selector.java
r17037 r17042 374 374 && left.matches(new Environment(p).withParent(e.osm)) && isArea(p) 375 375 && (toIgnore == null || !toIgnore.contains(p))) { 376 if (e.osm instanceof Way && ((Way) e.osm).referrers(Relation.class).anyMatch(ref -> ref == p))376 if (e.osm instanceof Way && ((Way) e.osm).referrers(Relation.class).anyMatch(ref -> ref == p)) 377 377 continue; 378 378 visitArea(p);
Note:
See TracChangeset
for help on using the changeset viewer.