Ignore:
Timestamp:
2009-09-08T16:30:39+02:00 (15 years ago)
Author:
stoecker
Message:

updated deprecated

Location:
applications/editors/josm/plugins/osmarender
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/osmarender/build.xml

    r17379 r17518  
    2626                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    2727                <attribute name="Plugin-Description" value="Launches FireFox to display the current visible screen as a nice SVG image."/>
    28                 <attribute name="Plugin-Mainversion" value="2012"/>
     28                <attribute name="Plugin-Mainversion" value="2067"/>
    2929                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3030            </manifest>
  • applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java

    r17379 r17518  
    5555            DataSet fromDataSet = new DataSet();
    5656            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)) {
    5958                    fromDataSet.nodes.add(n);
    6059                    n.visit(backRefsV);
Note: See TracChangeset for help on using the changeset viewer.