diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-08 11:14:31 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-08 11:14:31 +0000 |
commit | b80a27d639f0d1159f89d063144bb30696dd575a (patch) | |
tree | b92bbde961e250f5657d6a510df39e4a7528f98b /perl-install/install_gtk.pm | |
parent | 05692781c18db21f639aa5323a066fab118b8dd7 (diff) | |
download | drakx-backup-do-not-use-b80a27d639f0d1159f89d063144bb30696dd575a.tar drakx-backup-do-not-use-b80a27d639f0d1159f89d063144bb30696dd575a.tar.gz drakx-backup-do-not-use-b80a27d639f0d1159f89d063144bb30696dd575a.tar.bz2 drakx-backup-do-not-use-b80a27d639f0d1159f89d063144bb30696dd575a.tar.xz drakx-backup-do-not-use-b80a27d639f0d1159f89d063144bb30696dd575a.zip |
workaround a weird pb with gtk: still re-creating help Gtk::Text at each step :-/
Diffstat (limited to 'perl-install/install_gtk.pm')
-rw-r--r-- | perl-install/install_gtk.pm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index 9dac51447..f33495571 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -96,16 +96,14 @@ sub create_help_window { if ($w = $o->{help_window}) { $_->destroy foreach $w->{window}->children; } else { - $w = bless {}, 'my_gtk'; + $w = $o->{help_window} = bless {}, 'my_gtk'; $w->{rwindow} = $w->{window} = new Gtk::Window; $w->{rwindow}->set_uposition($::rootwidth - $::helpwidth, $::rootheight - $::helpheight); $w->{rwindow}->set_usize($::helpwidth, $::helpheight); $w->{rwindow}->set_title('skip'); - $w->sync; }; gtkadd($w->{window}, createScrolledWindow($o->{help_window_text} = new Gtk::Text)); $w->show; - $o->{help_window} = $w; } #------------------------------------------------------------------------------ |