Changeset 8133 in josm for trunk/src/org/openstreetmap/josm
- Timestamp:
- 2015-03-12T23:37:24+01:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/mappaint
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/ElemStyles.java
r7596 r8133 342 342 addIfNotNull(sl, BoxTextElemStyle.create(env, nodeStyle.getBoxProvider())); 343 343 } else { 344 addIfNotNull(sl, BoxTextElemStyle.create(env, NodeElemStyle.SIMPLE_NODE_ELEMSTYLE .getBoxProvider()));344 addIfNotNull(sl, BoxTextElemStyle.create(env, NodeElemStyle.SIMPLE_NODE_ELEMSTYLE_BOXPROVIDER)); 345 345 } 346 346 } else if (osm instanceof Relation) { -
trunk/src/org/openstreetmap/josm/gui/mappaint/NodeElemStyle.java
r8085 r8133 87 87 88 88 public static final NodeElemStyle SIMPLE_NODE_ELEMSTYLE; 89 public static final BoxProvider SIMPLE_NODE_ELEMSTYLE_BOXPROVIDER; 89 90 static { 90 91 MultiCascade mc = new MultiCascade(); … … 92 93 SIMPLE_NODE_ELEMSTYLE = create(new Environment(null, mc, "default", null), 4.1f, true); 93 94 if (SIMPLE_NODE_ELEMSTYLE == null) throw new AssertionError(); 95 SIMPLE_NODE_ELEMSTYLE_BOXPROVIDER = SIMPLE_NODE_ELEMSTYLE.getBoxProvider(); 94 96 } 95 97
Note:
See TracChangeset
for help on using the changeset viewer.