Changeset 7014 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2014-04-27T15:57:23+02:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/mappaint
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/ElemStyles.java
r7005 r7014 323 323 if (osm instanceof Way) { 324 324 addIfNotNull(sl, AreaElemStyle.create(c)); 325 addIfNotNull(sl, LinePatternElemStyle.create(env));326 325 addIfNotNull(sl, RepeatImageElemStyle.create(env)); 327 326 addIfNotNull(sl, LineElemStyle.createLine(env)); … … 341 340 if (((Relation)osm).isMultipolygon()) { 342 341 addIfNotNull(sl, AreaElemStyle.create(c)); 343 addIfNotNull(sl, LinePatternElemStyle.create(env));344 342 addIfNotNull(sl, RepeatImageElemStyle.create(env)); 345 343 addIfNotNull(sl, LineElemStyle.createLine(env)); -
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Instruction.java
r6896 r7014 75 75 value = val; 76 76 } 77 if (key.equals(ICON_IMAGE) || key.equals(FILL_IMAGE) || key.equals( "pattern-image") || key.equals(REPEAT_IMAGE)) {77 if (key.equals(ICON_IMAGE) || key.equals(FILL_IMAGE) || key.equals(REPEAT_IMAGE)) { 78 78 if (value instanceof String) { 79 79 value = new IconReference((String) value, env.source);
Note:
See TracChangeset
for help on using the changeset viewer.