Index: applications/editors/josm/plugins/osmarender/build.xml
===================================================================
--- applications/editors/josm/plugins/osmarender/build.xml	(revision 17485)
+++ applications/editors/josm/plugins/osmarender/build.xml	(revision 17518)
@@ -26,5 +26,5 @@
                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
                 <attribute name="Plugin-Description" value="Launches FireFox to display the current visible screen as a nice SVG image."/>
-                <attribute name="Plugin-Mainversion" value="2012"/>
+                <attribute name="Plugin-Mainversion" value="2067"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
             </manifest>
Index: applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java
===================================================================
--- applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java	(revision 17485)
+++ applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java	(revision 17518)
@@ -55,6 +55,5 @@
             DataSet fromDataSet = new DataSet();
             for (Node n : Main.main.getCurrentDataSet().nodes) {
-                if (n.deleted || n.incomplete) continue;
-                if (n.getCoor().isWithin(b)) {
+                if (n.isUsable() && n.getCoor().isWithin(b)) {
                     fromDataSet.nodes.add(n);
                     n.visit(backRefsV);
