Changeset 7330 in josm for trunk/src/org
- Timestamp:
- 2014-07-25T18:37:16+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
r7111 r7330 104 104 /** 105 105 * If the primitive is annotated with a tag such as note, fixme, etc. 106 * Match the "work in progress" tags in default elemstyles.xml.106 * Match the "work in progress" tags in default map style. 107 107 */ 108 108 protected static final int FLAG_ANNOTATED = 1 << 12; -
trunk/src/org/openstreetmap/josm/gui/preferences/map/MapPaintPreference.java
r7139 r7330 269 269 } 270 270 } 271 271 272 272 /* Migration code can be removed ~ Nov. 2014 */ 273 273 if (!Main.pref.getBoolean("mappaint.style.migration.switchedToMapCSS", false)) { … … 299 299 @Override 300 300 public Collection<ExtendedSourceEntry> getDefault() { 301 ExtendedSourceEntry defJosmXml = new ExtendedSourceEntry("elemstyles.xml", "resource://styles/standard/elemstyles.xml");302 defJosmXml.active = false;303 defJosmXml.name = "standard";304 defJosmXml.title = tr("JOSM default (XML; old version)");305 defJosmXml.description = tr("Internal style to be used as base for runtime switchable overlay styles");306 301 ExtendedSourceEntry defJosmMapcss = new ExtendedSourceEntry("elemstyles.mapcss", "resource://styles/standard/elemstyles.mapcss"); 307 302 defJosmMapcss.active = true; … … 315 310 defPL2.description = tr("the main Potlatch 2 style"); 316 311 317 return Arrays.asList(new ExtendedSourceEntry[] { defJosm Xml, defJosmMapcss, defPL2 });312 return Arrays.asList(new ExtendedSourceEntry[] { defJosmMapcss, defPL2 }); 318 313 } 319 314
Note:
See TracChangeset
for help on using the changeset viewer.