- Timestamp:
- 2007-12-23T18:58:53+01:00 (17 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/osm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
r440 r498 76 76 77 77 /** 78 * <code>true</code>, if the object has been shown. This property is not used79 * internally by JOSM, but can be used by plugins that take over the object80 * rendering.81 */82 public volatile boolean shown = false;83 84 /**85 78 * true if this object is considered "tagged". To be "tagged", an object 86 79 * must have one or more "non-standard" tags. "created_by" and "source" -
trunk/src/org/openstreetmap/josm/data/osm/visitor/MapPaintVisitor.java
r486 r498 387 387 for (final OsmPrimitive osm : data.getSelected()) 388 388 if (!osm.incomplete && !osm.deleted){ 389 osm.shown=false; //to be sure it will be drawn390 389 osm.visit(this); 391 390 }
Note:
See TracChangeset
for help on using the changeset viewer.