From: pabs Date: Sun, 30 Mar 2008 16:12:22 +0000 (+0000) Subject: Fix r1942, forgot to get the image width and height X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=911ac8fe67f2d2ae07ae952f068f5d7fba479f20;p=synfig.git Fix r1942, forgot to get the image width and height git-svn-id: http://svn.voria.com/code@1943 1f10aa63-cdf2-0310-b900-c93c546f37ac --- 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