Changeset 4002 in josm
- Timestamp:
- 2011-03-24T10:27:00+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/MapPainter.java
r3987 r4002 51 51 private final NavigatableComponent nc; 52 52 private final boolean inactive; 53 private final MapPaintSettings settings; 53 54 54 55 private final boolean useStrokes; … … 81 82 double circum, boolean leftHandTraffic) 82 83 { 84 this.settings = settings; 83 85 this.g = g; 84 86 this.inactive = inactive; … … 648 650 continue; 649 651 } 650 drawArea(r, p, color, fillImage, fillImageAlpha, text); 652 drawArea(r, p, 653 pd.selected ? settings.getRelationSelectedColor(color.getAlpha()) : color, 654 fillImage, fillImageAlpha, text); 651 655 } 652 656 }
Note:
See TracChangeset
for help on using the changeset viewer.