summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk3.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2013-08-30 16:41:54 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2013-11-24 21:28:36 +0100
commitbfd9b7229992f38240b4bd020cb45bbf5128d396 (patch)
treeb459505162fc276121fbd392d249d6eed2dbcaed /perl-install/ugtk3.pm
parentc55ce2a4f9967518bc736102a29afa8181815f6c (diff)
downloaddrakx-bfd9b7229992f38240b4bd020cb45bbf5128d396.tar
drakx-bfd9b7229992f38240b4bd020cb45bbf5128d396.tar.gz
drakx-bfd9b7229992f38240b4bd020cb45bbf5128d396.tar.bz2
drakx-bfd9b7229992f38240b4bd020cb45bbf5128d396.tar.xz
drakx-bfd9b7229992f38240b4bd020cb45bbf5128d396.zip
get_height() => get_allocated_height()
Diffstat (limited to 'perl-install/ugtk3.pm')
-rw-r--r--perl-install/ugtk3.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ugtk3.pm b/perl-install/ugtk3.pm
index 99c4ce5a8..74fc1f21f 100644
--- a/perl-install/ugtk3.pm
+++ b/perl-install/ugtk3.pm
@@ -1444,7 +1444,7 @@ sub new {
mygtk3::import_style_ressources();
my $darea = gtknew('DrawingArea', widget_name => 'Banner');
$darea->{back_pixbuf} = gtknew('Pixbuf', file => 'banner-background');
- my $d_height = $darea->{back_pixbuf}->get_height;
+ my $d_height = $darea->{back_pixbuf}->get_allocated_height;
$darea->set_size_request(-1, $d_height);
$darea->modify_font(Pango::FontDescription->from_string("13"));
eval { $darea->{icon} = ugtk3::gtkcreate_pixbuf($icon) };