Changeset 31237 in osm for applications/editors
- Timestamp:
- 2015-06-07T21:38:21+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/FastDraw
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FastDraw/build.xml
r31225 r31237 2 2 <project name="FastDraw" default="dist" basedir="."> 3 3 <!-- enter the SVN commit message --> 4 <property name="commit.message" value="[josm_fastdraw] Fix settings saving, allow edit existing ways (Q)"/>4 <property name="commit.message" value="[josm_fastdraw] Fix for incorrect settings case"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 6 <property name="plugin.main.version" value="7609"/> -
applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FDSettings.java
r31224 r31237 74 74 fixedSpacebar = Main.pref.getBoolean("fastdraw.fixedspacebar", false); 75 75 drawClosed = Main.pref.getBoolean("fastdraw.drawclosed", false); 76 simplifyMode = Main.pref.getInteger("fastdraw.simplifymode", 0) ;76 simplifyMode = Main.pref.getInteger("fastdraw.simplifymode", 0) % 2; 77 77 allowEditExistingWays = Main.pref.getBoolean("fastdraw.alloweditexisting", false); 78 78
Note:
See TracChangeset
for help on using the changeset viewer.