Index: applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java
===================================================================
--- applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java	(revision 17379)
+++ 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);
