summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_gtk.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r--perl-install/install_steps_gtk.pm8
1 files changed, 7 insertions, 1 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm
index bb69a8147..7e6d438b3 100644
--- a/perl-install/install_steps_gtk.pm
+++ b/perl-install/install_steps_gtk.pm
@@ -123,6 +123,13 @@ 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->main;
+ };
$ugtk2::force_center = [ $::rootwidth - $::windowwidth, $::logoheight, $::windowwidth, $::windowheight ];
$o = (bless {}, ref $type || $type)->SUPER::new($o);
@@ -273,7 +280,6 @@ sub reallyChooseGroups {
1;
}
-
sub choosePackagesTree {
my ($o, $packages, $limit_to_medium) = @_;