Index: trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/MapPaintSettings.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/MapPaintSettings.java	(revision 3164)
+++ trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/MapPaintSettings.java	(revision 3165)
@@ -31,4 +31,5 @@
     private Color inactiveColor;
     private Color nodeColor;
+    private Color taggedColor;
 
     private MapPaintSettings() {
@@ -47,4 +48,5 @@
         inactiveColor = PaintColors.INACTIVE.get();
         nodeColor = PaintColors.NODE.get();
+        taggedColor = PaintColors.TAGGED.get();
 
         showOrderNumber = Main.pref.getBoolean("draw.segment.order_number", false);
@@ -95,4 +97,12 @@
     }
 
+    public Color getNodeColor() {
+        return nodeColor;
+    }
+
+    public Color getTaggedColor() {
+        return taggedColor;
+    }
+
     public boolean isShowOrderNumber() {
         return showOrderNumber;
@@ -113,8 +123,4 @@
     public int getUseStrokesDistance() {
         return useStrokesDistance;
-    }
-
-    public Color getNodeColor() {
-        return nodeColor;
     }
 
Index: trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/PaintColors.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/PaintColors.java	(revision 3164)
+++ trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/PaintColors.java	(revision 3165)
@@ -14,4 +14,5 @@
     SELECTED(marktr("selected"), Color.red),
     NODE(marktr("node"), Color.yellow),
+    TAGGED(marktr("tagged"), new Color(204, 255, 255)), // turquoise
     DEFAULT_WAY(marktr("way"),  new Color(0,0,128)), // dark blue
     RELATION(marktr("relation"), new Color(0,128,128)), // teal
Index: trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/SimplePaintVisitor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/SimplePaintVisitor.java	(revision 3164)
+++ trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/SimplePaintVisitor.java	(revision 3165)
@@ -61,4 +61,5 @@
     protected Color backgroundColor;
     protected Color highlightColor;
+    protected Color taggedColor;
     protected boolean showDirectionArrow;
     protected boolean showRelevantDirectionsOnly;
@@ -96,4 +97,5 @@
         backgroundColor = PaintColors.BACKGROUND.get();
         highlightColor = PaintColors.HIGHLIGHT.get();
+        taggedColor = PaintColors.TAGGED.get();
     }
 
@@ -239,5 +241,6 @@
             drawNode(
                 n,
-                (inactive || n.isDisabled()) ? inactiveColor : nodeColor,
+                (inactive || n.isDisabled()) ? inactiveColor : 
+                    (n.isTagged() ? taggedColor : nodeColor),
                 junction ? junctionNodeSize : unselectedNodeSize,
                 junction ? junctionNodeRadius : unselectedNodeRadius,
