Changeset 5702 in josm for trunk/src


Ignore:
Timestamp:
2013-02-08T22:37:27+01:00 (11 years ago)
Author:
bastiK
Message:

mapcss: separate opacity for way casing

File:
1 edited

Legend:

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

    r5571 r5702  
    184184
    185185        int alpha = 255;
    186         Integer pAlpha = Utils.color_float2int(c.get(OPACITY, null, Float.class));
     186        Integer pAlpha = Utils.color_float2int(c.get(type.prefix + OPACITY, null, Float.class));
    187187        if (pAlpha != null) {
    188188            alpha = pAlpha;
Note: See TracChangeset for help on using the changeset viewer.