diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-13 12:00:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-13 12:00:36 +0000 |
commit | 136c59737310c46e3e736786ad3c6dca9b3725a8 (patch) | |
tree | ba83bd12bc0eeedad351ba7e9897ff5408880f57 /perl-install/install_steps_gtk.pm | |
parent | f3e304fafab539ecd097dbc3a45621c873eb984f (diff) | |
download | drakx-136c59737310c46e3e736786ad3c6dca9b3725a8.tar drakx-136c59737310c46e3e736786ad3c6dca9b3725a8.tar.gz drakx-136c59737310c46e3e736786ad3c6dca9b3725a8.tar.bz2 drakx-136c59737310c46e3e736786ad3c6dca9b3725a8.tar.xz drakx-136c59737310c46e3e736786ad3c6dca9b3725a8.zip |
- {interactive_help} is a function returning text, it doesn't need to do the help window
- drop global interactive_help during install. Will be done per ->ask_*
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r-- | perl-install/install_steps_gtk.pm | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm index cc6b2e168..bfe920546 100644 --- a/perl-install/install_steps_gtk.pm +++ b/perl-install/install_steps_gtk.pm @@ -125,14 +125,6 @@ sub new($$) { install_gtk::install_theme($o, install_gtk::default_theme($o)); install_gtk::create_logo_window($o); - $o->{interactive_help} = sub { - my $w = ugtk2->new(''); - $w->{rwindow}->set_size_request($::windowwidth * 0.92, $::windowheight * 0.9); - gtkadd($w->{window}, gtkpack__(create_box_with_title($w, $o->{current_help}), - $w->create_okcancel(N("Ok")))); - $w->{ok}->grab_focus; - $w->main; - }; $ugtk2::force_center = [ $::rootwidth - $::windowwidth, $::logoheight, $::windowwidth, $::windowheight ]; $o = (bless {}, ref($type) || $type)->SUPER::new($o); |