diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-03 19:45:56 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-03 19:45:56 +0000 |
commit | 18ce92eb868a38de19c18f71646e923c9cb3bc85 (patch) | |
tree | e7a865358bc5f20ce03833eac4f78606340df53b | |
parent | 3de3dd8b0177c706350e4629770c5b48abf8d91e (diff) | |
download | drakx-backup-do-not-use-18ce92eb868a38de19c18f71646e923c9cb3bc85.tar drakx-backup-do-not-use-18ce92eb868a38de19c18f71646e923c9cb3bc85.tar.gz drakx-backup-do-not-use-18ce92eb868a38de19c18f71646e923c9cb3bc85.tar.bz2 drakx-backup-do-not-use-18ce92eb868a38de19c18f71646e923c9cb3bc85.tar.xz drakx-backup-do-not-use-18ce92eb868a38de19c18f71646e923c9cb3bc85.zip |
(create_packtable): ScrolledWindow are not the only one allowed to grow,
widgets with get_data('must_grow') set are allowed too
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index 622574401..d861b96d9 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -422,7 +422,7 @@ sub create_packtable { $w->attach($_, $j, $j + 1, $i, $i + 1, 'fill', 'fill', 5, 0) : $w->attach($_, $j, $j + 1, $i, $i + 1, - ['expand', 'fill'], ref($_) eq 'Gtk2::ScrolledWindow' ? ['expand', 'fill'] : [], 0, 0); + ['expand', 'fill'], ref($_) eq 'Gtk2::ScrolledWindow' || $_->get_data('must_grow') ? ['expand', 'fill'] : [], 0, 0); $_->show; } } @$l; |