Changeset 547 in josm for trunk/src/org/openstreetmap/josm/io
- Timestamp:
- 2008-02-18T18:27:12+01:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/GpxReader.java
r542 r547 238 238 currentState = states.pop(); 239 239 currentTrackSeg.add(currentWayPoint); 240 String option = "marker.namedtrackpoints"; 241 if (Main.pref.hasKey(option) && 242 Main.pref.getBoolean(option) && 240 if (Main.pref.getBoolean("marker.namedtrackpoints") && 243 241 (currentWayPoint.attr.containsKey("name") || 244 242 currentWayPoint.attr.containsKey("desc")))
Note:
See TracChangeset
for help on using the changeset viewer.