Ignore:
Timestamp:
2010-03-29T23:19:33+02:00 (14 years ago)
Author:
bastiK
Message:

change tagged node color in wire frame view

File:
1 edited

Legend:

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

    r3164 r3165  
    6161    protected Color backgroundColor;
    6262    protected Color highlightColor;
     63    protected Color taggedColor;
    6364    protected boolean showDirectionArrow;
    6465    protected boolean showRelevantDirectionsOnly;
     
    9697        backgroundColor = PaintColors.BACKGROUND.get();
    9798        highlightColor = PaintColors.HIGHLIGHT.get();
     99        taggedColor = PaintColors.TAGGED.get();
    98100    }
    99101
     
    239241            drawNode(
    240242                n,
    241                 (inactive || n.isDisabled()) ? inactiveColor : nodeColor,
     243                (inactive || n.isDisabled()) ? inactiveColor :
     244                    (n.isTagged() ? taggedColor : nodeColor),
    242245                junction ? junctionNodeSize : unselectedNodeSize,
    243246                junction ? junctionNodeRadius : unselectedNodeRadius,
Note: See TracChangeset for help on using the changeset viewer.