Changeset 15938 in osm for applications/editors


Ignore:
Timestamp:
2009-06-16T08:52:48+02:00 (16 years ago)
Author:
stoecker
Message:

close #2737

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java

    r14406 r15938  
    6565            for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.data)) {
    6666                if (p instanceof Way) {
    67                     backRefsV.data.addAll(((Way) p).nodes);
     67                    for (Node n : ((Way) p).nodes) {
     68                        if (n.coor.isWithin(b))
     69                            backRefsV.data.add(n);
     70                    }
    6871                }
    6972            }
     
    7982                w.writeContent(fromDataSet);
    8083                w.footer();
     84                w.close();
    8185
    8286                // get the exec line
Note: See TracChangeset for help on using the changeset viewer.