diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-18 01:40:16 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-24 21:30:34 +0100 |
commit | 7837c6fe4a41072357177c33fc47380a44aea78c (patch) | |
tree | 2da04707855dd7fa288d26fa5237721f6cc9efd1 /lib/mouse.pm | |
parent | 75738ce3cb6b7282de4e8f2641361f3fae716e83 (diff) | |
download | drakx-kbd-mouse-x11-7837c6fe4a41072357177c33fc47380a44aea78c.tar drakx-kbd-mouse-x11-7837c6fe4a41072357177c33fc47380a44aea78c.tar.gz drakx-kbd-mouse-x11-7837c6fe4a41072357177c33fc47380a44aea78c.tar.bz2 drakx-kbd-mouse-x11-7837c6fe4a41072357177c33fc47380a44aea78c.tar.xz drakx-kbd-mouse-x11-7837c6fe4a41072357177c33fc47380a44aea78c.zip |
get_width() => get_allocated_width()
Diffstat (limited to 'lib/mouse.pm')
-rw-r--r-- | lib/mouse.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mouse.pm b/lib/mouse.pm index 23310ea..51de483 100644 --- a/lib/mouse.pm +++ b/lib/mouse.pm @@ -578,7 +578,7 @@ sub test_mouse { up => 'arrow_up', down => 'arrow_down'); my %images = map { $_ => ugtk3::gtkcreate_pixbuf("$image_files{$_}.png") } keys %image_files; - my $width = $images{mouse}->get_width; + my $width = $images{mouse}->get_allocated_width; my $height = round_up($images{mouse}->get_allocated_height, 6); my $draw_text = sub { @@ -592,7 +592,7 @@ sub test_mouse { }; my $draw_pixbuf = sub { my ($p, $x, $y, $w, $h) = @_; - $w = $p->get_width; + $w = $p->get_allocated_width; $h = $p->get_allocated_height; $p->render_to_drawable($darea->get_window, $darea->get_style->bg_gc('normal'), 0, 0, ($darea->get_allocation->width-$width)/2 + $x, ($darea->get_allocation->height-$height)/2 + $y, |