From e4a733279204fd41aaee08d77501c38a01b8932f Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 12 Apr 2001 13:43:22 +0000 Subject: *** empty log message *** --- perl-install/install_steps_gtk.pm | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm index 760f15122..3d3808155 100644 --- a/perl-install/install_steps_gtk.pm +++ b/perl-install/install_steps_gtk.pm @@ -274,28 +274,31 @@ sub reallyChooseGroups { $w_size->set(&$size_to_display); }); gtkset_tip($tips, $check, $help); - #gtkpack_(new Gtk::HBox(0,0), 0, gtkpng($file), 1, $check); - $check; + gtkpack_(new Gtk::HBox(0,0), 0, gtkpng($file), 1, $check); + #$check; }; my $entries_in_path = sub { my ($path) = @_; - $path, map { $entry->($_) } grep { $o->{compssUsers}{$_}{path} eq $path } @{$o->{compssUsersSorted}}; + $path, map { $entry->($_) } grep { !/Utilities/ && $o->{compssUsers}{$_}{path} eq $path } @{$o->{compssUsersSorted}}; }; gtkadd($w->{window}, gtkpack($w->create_box_with_title(_("Package Group Selection")), - gtkpack_(new Gtk::HBox(0,0), - 1, gtkpack(new Gtk::VBox(0,0), - $entries_in_path->('Workstation'), - $entries_in_path->('Server'), - ), - 0, gtkpack__(new Gtk::VBox(0,0), - $entries_in_path->('Graphical Environment'), - '', - $entry->('Development|Standard tools'), - $entry->('Development|Documentation'), - ), - ), - + gtkpack_(new Gtk::VBox(0,0), + 1, gtkpack_(new Gtk::HBox(0,0), + 1, gtkpack(new Gtk::VBox(0,0), + $entries_in_path->('Workstation'), + '', + $entry->('Development|Development'), + $entry->('Development|Documentation'), + ), + 0, gtkpack(new Gtk::VBox(0,0), + $entries_in_path->('Server'), + '', + $entries_in_path->('Graphical Environment'), + ), + ), + ), + '', gtkadd(new Gtk::HBox(0,0), $w_size, if_($individual, do { -- cgit v1.2.1