summaryrefslogtreecommitdiffstats
path: root/perl-install/mygtk3.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-01-20 01:38:26 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-01-20 01:56:14 +0100
commit63b96a79bf9ea443f056df91035d92ae8d720078 (patch)
tree28da2755e33034bd4e04c8c489dc419a24d21f8d /perl-install/mygtk3.pm
parentf9104f228828d8871548a917461cbd01285b1fb4 (diff)
downloaddrakx-63b96a79bf9ea443f056df91035d92ae8d720078.tar
drakx-63b96a79bf9ea443f056df91035d92ae8d720078.tar.gz
drakx-63b96a79bf9ea443f056df91035d92ae8d720078.tar.bz2
drakx-63b96a79bf9ea443f056df91035d92ae8d720078.tar.xz
drakx-63b96a79bf9ea443f056df91035d92ae8d720078.zip
fix inverted dimensions
bug introduced in commit fadc8b97ed98977bf264d87d62c33e779f299716 important to fix before next commit
Diffstat (limited to 'perl-install/mygtk3.pm')
-rw-r--r--perl-install/mygtk3.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/mygtk3.pm b/perl-install/mygtk3.pm
index 3f75d4cc6..ff27ecbe1 100644
--- a/perl-install/mygtk3.pm
+++ b/perl-install/mygtk3.pm
@@ -1333,7 +1333,7 @@ sub _create_Window {
my ($wi, $he);
$w->signal_connect(size_allocate => sub {
my (undef, $event) = @_;
- my @w_size = @$event{qw(height width)};
+ my @w_size = @$event{qw(width height)};
# ignore bogus sizing events:
return if $w_size[2] < 5;