Default the width tool's "relative growth" to OFF.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Sat, 11 Oct 2008 06:06:21 +0000 (06:06 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Sat, 11 Oct 2008 06:06:21 +0000 (06:06 +0000)
git-svn-id: https://synfig.svn.sourceforge.net/svnroot/synfig@2090 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-studio/trunk/src/gtkmm/state_width.cpp

index 818fdd5..7c7b1bc 100644 (file)
@@ -184,11 +184,11 @@ StateWidth_Context::load_settings()
        else
                set_radius(15);
 
-       //defaults to true
-       if(settings.get_value("width.relative",value) && value == "0")
-               set_relative(false);
-       else
+       //defaults to false
+       if(settings.get_value("width.relative",value) && value == "1")
                set_relative(true);
+       else
+               set_relative(false);
 }
 
 void