From 9bc3f81c48d62ed7ddceae18e03f2203b835ca2d Mon Sep 17 00:00:00 2001 From: dooglus Date: Sat, 11 Oct 2008 06:06:21 +0000 Subject: [PATCH] Default the width tool's "relative growth" to OFF. git-svn-id: https://synfig.svn.sourceforge.net/svnroot/synfig@2090 1f10aa63-cdf2-0310-b900-c93c546f37ac --- synfig-studio/trunk/src/gtkmm/state_width.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/synfig-studio/trunk/src/gtkmm/state_width.cpp b/synfig-studio/trunk/src/gtkmm/state_width.cpp index 818fdd5..7c7b1bc 100644 --- a/synfig-studio/trunk/src/gtkmm/state_width.cpp +++ b/synfig-studio/trunk/src/gtkmm/state_width.cpp @@ -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 -- 2.7.4