Changeset 31265 in osm


Ignore:
Timestamp:
2015-06-14T21:32:09+02:00 (9 years ago)
Author:
akks
Message:

[josm_fastdraw] Fix incorrect settings saving-2

Location:
applications/editors/josm/plugins/FastDraw
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/FastDraw/build.xml

    r31237 r31265  
    22<project name="FastDraw" default="dist" basedir=".">
    33    <!-- 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"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    66    <property name="plugin.main.version" value="7609"/>
  • applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FDSettings.java

    r31237 r31265  
    7474        fixedSpacebar = Main.pref.getBoolean("fastdraw.fixedspacebar", false);
    7575        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;
    7777        allowEditExistingWays = Main.pref.getBoolean("fastdraw.alloweditexisting", false);
    7878
Note: See TracChangeset for help on using the changeset viewer.