diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-08-30 16:41:54 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-24 21:28:36 +0100 |
commit | bfd9b7229992f38240b4bd020cb45bbf5128d396 (patch) | |
tree | b459505162fc276121fbd392d249d6eed2dbcaed /perl-install | |
parent | c55ce2a4f9967518bc736102a29afa8181815f6c (diff) | |
download | drakx-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')
-rw-r--r-- | perl-install/ugtk3.pm | 2 |
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) }; |