diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-26 09:38:59 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-26 09:38:59 +0000 |
commit | 5dafb7f993d94cf570d5f8e7de99d55a67361a3b (patch) | |
tree | b8963f80a80e7d923925e6575dc6d6ff3eca17cd /perl-install | |
parent | f57ee519a6f10d77e7e474959b3e3a521602c2e5 (diff) | |
download | drakx-5dafb7f993d94cf570d5f8e7de99d55a67361a3b.tar drakx-5dafb7f993d94cf570d5f8e7de99d55a67361a3b.tar.gz drakx-5dafb7f993d94cf570d5f8e7de99d55a67361a3b.tar.bz2 drakx-5dafb7f993d94cf570d5f8e7de99d55a67361a3b.tar.xz drakx-5dafb7f993d94cf570d5f8e7de99d55a67361a3b.zip |
->size_request doesn't return anything on the box, it is better done on the window (for rpmdrake)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/mygtk2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 51fcc2f5a..761998b98 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -616,7 +616,7 @@ sub _gtknew_handle_children { #- * if the {child} doesn't handle the method, we try with the {real_window} #- (eg : add_accel_group set_position set_default_size #- * a few methods are handled specially -my %for_real_window = map { $_ => 1 } qw(show_all); +my %for_real_window = map { $_ => 1 } qw(show_all size_request); sub mygtk2::MagicWindow::AUTOLOAD { my ($w, @args) = @_; |