From 8f8c08bbde58066465a1714711fd1af304b4264b Mon Sep 17 00:00:00 2001 From: genete Date: Sat, 11 Oct 2008 09:19:52 +0000 Subject: [PATCH] Allow Growth parameter be bigger than 1.0, modified small and big increments. Also set default value for Radius parameter to be not 0. Now the tool works better. git-svn-id: https://synfig.svn.sourceforge.net/svnroot/synfig@2094 1f10aa63-cdf2-0310-b900-c93c546f37ac --- synfig-studio/trunk/src/gtkmm/state_width.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synfig-studio/trunk/src/gtkmm/state_width.cpp b/synfig-studio/trunk/src/gtkmm/state_width.cpp index 7c7b1bc..6babed3 100644 --- a/synfig-studio/trunk/src/gtkmm/state_width.cpp +++ b/synfig-studio/trunk/src/gtkmm/state_width.cpp @@ -214,10 +214,10 @@ StateWidth_Context::StateWidth_Context(CanvasView* canvas_view): settings(synfigapp::Main::get_selected_input_device()->settings()), - adj_delta(6,0,1,0.001,0.01), + adj_delta(6,0,20,0.01,0.1), spin_delta(adj_delta,0.01,3), - adj_radius(0,0,1e50,1,10), + adj_radius(200,0,1e50,1,10), spin_radius(adj_radius,1,1), check_relative(_("Relative Growth")) -- 2.7.4