Ignore:
Timestamp:
2009-01-25T18:27:54+01:00 (15 years ago)
Author:
ulfl
Message:

add a mappaint "dashedcolour", which controls the background color of a dashed line

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/LineElemStyle.java

    r1333 r1340  
    1010    public Color color;
    1111    public int dashed;
     12    public Color dashedColor;
    1213
    1314    public boolean over;
     
    2223        this.color = s.color;
    2324        this.dashed = s.dashed;
     25        this.dashedColor = s.dashedColor;
    2426        this.over = s.over;
    2527        this.widthMode = s.widthMode;
     
    3537        this.color = s.color;
    3638        this.dashed = s.dashed;
     39        this.dashedColor = s.dashedColor;
    3740        this.over = s.over;
    3841        this.widthMode = s.widthMode;
     
    5558        realWidth = 0;
    5659        dashed = 0;
     60        dashedColor = null;
    5761        priority = 0;
    5862        color = null;
Note: See TracChangeset for help on using the changeset viewer.