Index: /applications/editors/josm/plugins/FastDraw/build.xml
===================================================================
--- /applications/editors/josm/plugins/FastDraw/build.xml	(revision 31236)
+++ /applications/editors/josm/plugins/FastDraw/build.xml	(revision 31237)
@@ -2,5 +2,5 @@
 <project name="FastDraw" default="dist" basedir=".">
     <!-- enter the SVN commit message -->
-    <property name="commit.message" value="[josm_fastdraw] Fix settings saving, allow edit existing ways (Q)"/>
+    <property name="commit.message" value="[josm_fastdraw] Fix for incorrect settings case"/>
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
     <property name="plugin.main.version" value="7609"/>
Index: /applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FDSettings.java
===================================================================
--- /applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FDSettings.java	(revision 31236)
+++ /applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FDSettings.java	(revision 31237)
@@ -74,5 +74,5 @@
         fixedSpacebar = Main.pref.getBoolean("fastdraw.fixedspacebar", false);
         drawClosed =  Main.pref.getBoolean("fastdraw.drawclosed", false);
-        simplifyMode = Main.pref.getInteger("fastdraw.simplifymode", 0);
+        simplifyMode = Main.pref.getInteger("fastdraw.simplifymode", 0) % 2;
         allowEditExistingWays = Main.pref.getBoolean("fastdraw.alloweditexisting", false);
 
