Ticket #2281: color_null.patch

File color_null.patch, 561 bytes (added by Landwirt, 16 years ago)

fix missing border colors

  • src/org/openstreetmap/josm/data/osm/visitor/MapPaintVisitor.java

     
    256256
    257257        if(l != null)
    258258        {
    259             color = l.color;
     259            if (l.color != null) color = l.color;
    260260            width = l.width;
    261261            realWidth = l.realWidth;
    262262            dashed = l.dashed;