Changeset 16625 in osm for applications
- Timestamp:
- 2009-07-21T20:44:28+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/surveyor
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/surveyor/.classpath
r3081 r16625 4 4 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> 5 5 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 6 <classpathentry combineaccessrules="false" kind="src" path="/ josm-plugin-livegps"/>6 <classpathentry combineaccessrules="false" kind="src" path="/livegps"/> 7 7 <classpathentry kind="output" path="bin"/> 8 8 </classpath> -
applications/editors/josm/plugins/surveyor/build.xml
r16409 r16625 37 37 <attribute name="Plugin-Description" value="Allow adding markers/nodes on current gps positions."/> 38 38 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Surveyor"/> 39 <attribute name="Plugin-Mainversion" value="1 755"/>39 <attribute name="Plugin-Mainversion" value="1815"/> 40 40 <attribute name="Plugin-Requires" value="livegps"/> 41 41 <attribute name="Plugin-Stage" value="60"/> -
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/action/SetNodeAction.java
r16409 r16625 71 71 synchronized(LiveGpsLock.class) { 72 72 Main.map.mapView.getEditLayer().data.nodes.add(node); 73 Main. ds.setSelected(node);73 Main.main.getCurrentDataSet().setSelected(node); 74 74 } 75 75 Main.map.repaint();
Note:
See TracChangeset
for help on using the changeset viewer.