Ignore:
Timestamp:
2010-12-03T00:36:07+01:00 (13 years ago)
Author:
framm
Message:
  • add preference to draw outlines for polygons only, overriding any style settings. this helps tracing from aerial imagery when you have landuse=residential everywhere obscuring the view.
File:
1 edited

Legend:

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

    r3291 r3691  
    2929    private boolean fillTaggedNode;
    3030    private boolean fillConnectionNode;
     31    private boolean outlineOnly;
    3132    private Color selectedColor;
    3233    private Color relationSelectedColor;
     
    7879        fillTaggedNode = Main.pref.getBoolean("mappaint.node.fill-tagged", true);
    7980        fillConnectionNode = Main.pref.getBoolean("mappaint.node.fill-connection", false);
     81
     82        outlineOnly = Main.pref.getBoolean("draw.data.area_outline_only", false);
     83
    8084    }
    8185
     
    187191        return fillTaggedNode;
    188192    }
     193
     194    public boolean isOutlineOnly() {
     195        return outlineOnly;
     196    }
    189197}
Note: See TracChangeset for help on using the changeset viewer.