Changeset 26599 in osm for applications/editors/josm/plugins
- Timestamp:
- 2011-09-02T17:18:16+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/FastDraw
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FastDraw/build.xml
r26535 r26599 30 30 <project name="FastDraw" default="dist" basedir="."> 31 31 <!-- enter the SVN commit message --> 32 <property name="commit.message" value="FastDraw: block spacebar"/>32 <property name="commit.message" value="FastDraw: recompile due to core change"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="4 201"/>34 <property name="plugin.main.version" value="4395"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java
r26535 r26599 539 539 * Updates shift and ctrl key states 540 540 */ 541 pr ivatevoid updateKeyModifiers(InputEvent e) {541 protected void updateKeyModifiers(InputEvent e) { 542 542 ctrl = (e.getModifiers() & ActionEvent.CTRL_MASK) != 0; 543 543 shift = (e.getModifiers() & ActionEvent.SHIFT_MASK) != 0; … … 686 686 if (w.isClosed()) line.closeLine(); 687 687 oldNodes = w.getNodes(); 688 List <OsmPrimitive> wl = new ArrayList (); wl.add(w);688 List <OsmPrimitive> wl = new ArrayList<OsmPrimitive>(); wl.add(w); 689 689 690 690 Command c = DeleteCommand.delete(getEditLayer(), wl, false);
Note:
See TracChangeset
for help on using the changeset viewer.