Ignore:
Timestamp:
2010-06-01T19:20:46+02:00 (14 years ago)
Author:
stoecker
Message:

fix #4414 - draw selected relation and selected elements a bit different

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/MapPaintSettings.java

    r3185 r3291  
    3030    private boolean fillConnectionNode;
    3131    private Color selectedColor;
     32    private Color relationSelectedColor;
    3233    private Color highlightColor;
    3334    private Color inactiveColor;
     
    4950
    5051        selectedColor = PaintColors.SELECTED.get();
     52        relationSelectedColor = PaintColors.RELATIONSELECTED.get();
    5153        highlightColor = PaintColors.HIGHLIGHT.get();
    5254        inactiveColor = PaintColors.INACTIVE.get();
     
    100102    public Color getSelectedColor() {
    101103        return selectedColor;
     104    }
     105
     106    public Color getRelationSelectedColor() {
     107        return relationSelectedColor;
    102108    }
    103109
Note: See TracChangeset for help on using the changeset viewer.