Changeset 17245 in josm
- Timestamp:
- 2020-10-19T23:19:56+02:00 (3 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/resources/data/validator/ignoretags.cfg
r17216 r17245 236 236 K:site=wind_farm 237 237 K:site=mall 238 K:landform=dune_system 238 239 ; 239 240 ; Highway Key/Value Pairs -
trunk/src/org/openstreetmap/josm/gui/preferences/display/DrawingPreference.java
r17231 r17245 69 69 70 70 DrawingPreference() { 71 super( /* ICON(preferences/) */ "display", tr("OSM Data"), tr("Settings that control the drawing of OSM data."));71 super("layer/osmdata_small", tr("OSM Data"), tr("Settings that control the drawing of OSM data.")); 72 72 } 73 73 -
trunk/src/org/openstreetmap/josm/gui/preferences/display/GPXPreference.java
r17231 r17245 25 25 26 26 GPXPreference() { 27 super("layer/gpx_small .svg", tr("GPS Points"), tr("Settings that control the drawing of GPS tracks."));27 super("layer/gpx_small", tr("GPS Points"), tr("Settings that control the drawing of GPS tracks.")); 28 28 } 29 29 -
trunk/src/org/openstreetmap/josm/gui/preferences/display/LafPreference.java
r17159 r17245 74 74 75 75 LafPreference() { 76 super( null, tr("Look and Feel"), tr("Change the Look and Feel of the program"));76 super(/* ICON(preferences/) */ "display", tr("Look and Feel"), tr("Change the Look and Feel of the program")); 77 77 } 78 78 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/ProjectionPreference.java
r17161 r17245 343 343 344 344 public ProjectionPreference() { 345 super( null, tr("Map Projection"), tr("Map Projection"));345 super(/* ICON(preferences/) */ "map", tr("Map Projection"), tr("Map Projection")); 346 346 this.projectionCombo = new JosmComboBox<>( 347 347 projectionChoices.toArray(new ProjectionChoice[0]));
Note: See TracChangeset
for help on using the changeset viewer.