From 911ac8fe67f2d2ae07ae952f068f5d7fba479f20 Mon Sep 17 00:00:00 2001 From: pabs Date: Sun, 30 Mar 2008 16:12:22 +0000 Subject: [PATCH] Fix r1942, forgot to get the image width and height git-svn-id: http://svn.voria.com/code@1943 1f10aa63-cdf2-0310-b900-c93c546f37ac --- synfig-studio/trunk/src/gtkmm/splash.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synfig-studio/trunk/src/gtkmm/splash.cpp b/synfig-studio/trunk/src/gtkmm/splash.cpp index 19750c7..01d82aa 100644 --- a/synfig-studio/trunk/src/gtkmm/splash.cpp +++ b/synfig-studio/trunk/src/gtkmm/splash.cpp @@ -186,8 +186,8 @@ Splash::Splash(): int image_w = 350; int image_h = 0; Glib::RefPtr pixbuf = splash_image->get_pixbuf(); if( pixbuf ){ - pixbuf->get_width(); - pixbuf->get_height(); + image_w = pixbuf->get_width(); + image_h = pixbuf->get_height(); } // Create the progress bar -- 2.7.4