Changeset 31265 in osm for applications
- Timestamp:
- 2015-06-14T21:32:09+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/FastDraw
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FastDraw/build.xml
r31237 r31265 2 2 <project name="FastDraw" default="dist" basedir="."> 3 3 <!-- enter the SVN commit message --> 4 <property name="commit.message" value="[josm_fastdraw] Fix for incorrect settings case"/>4 <property name="commit.message" value="[josm_fastdraw] Fix incorrect settings saving-2"/> 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
r31237 r31265 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) % 2;76 simplifyMode = Main.pref.getInteger("fastdraw.simplifymode", 0) % 3; 77 77 allowEditExistingWays = Main.pref.getBoolean("fastdraw.alloweditexisting", false); 78 78
Note:
See TracChangeset
for help on using the changeset viewer.