Changeset 17518 in osm for applications/editors/josm/plugins/osmarender
- Timestamp:
- 2009-09-08T16:30:39+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/osmarender
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/osmarender/build.xml
r17379 r17518 26 26 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 27 27 <attribute name="Plugin-Description" value="Launches FireFox to display the current visible screen as a nice SVG image."/> 28 <attribute name="Plugin-Mainversion" value="20 12"/>28 <attribute name="Plugin-Mainversion" value="2067"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java
r17379 r17518 55 55 DataSet fromDataSet = new DataSet(); 56 56 for (Node n : Main.main.getCurrentDataSet().nodes) { 57 if (n.deleted || n.incomplete) continue; 58 if (n.getCoor().isWithin(b)) { 57 if (n.isUsable() && n.getCoor().isWithin(b)) { 59 58 fromDataSet.nodes.add(n); 60 59 n.visit(backRefsV);
Note:
See TracChangeset
for help on using the changeset viewer.