Module: synfig Branch: master Commit: 287db7680ef79d5019ea9226331c4327fa77d8d3 URL: http://synfig.git.sourceforge.net/git/gitweb.cgi?p=synfig;a=commit;h=287db7680ef79d5019ea9226331c4327fa77d8d3
Author: Carlos Lopez <[email protected]> Date: Sat May 15 14:10:41 2010 +0200 Resize the default vertical panels sizes to a better layout. --- synfig-studio/src/gtkmm/app.cpp | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/synfig-studio/src/gtkmm/app.cpp b/synfig-studio/src/gtkmm/app.cpp index c582590..8997fa6 100644 --- a/synfig-studio/src/gtkmm/app.cpp +++ b/synfig-studio/src/gtkmm/app.cpp @@ -1818,8 +1818,8 @@ App::reset_initial_window_configuration() std::string h_pos(strprintf("%d %d", h_xpos, h_ypos)); std::string h_size(strprintf("%d %d", h_xsize, h_ysize)); int v_dock1 = rect.get_height()*vdock*0.8/100.0; - int v_dock2 = rect.get_height()*vdock/100.0; - int v_dock3 = rect.get_height()*vdock/100.0; + int v_dock2 = rect.get_height()*vdock*0.6/100.0; + int v_dock3 = rect.get_height()*vdock*1.1/100.0; int h_dock = rect.get_width()*hdock/100.0; //Contents size std::string v_contents(strprintf("%d %d %d", v_dock1, v_dock2, v_dock3)); ------------------------------------------------------------------------------ _______________________________________________ Synfig-devl mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/synfig-devl
