diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index ae65d4a0f..6f3035587 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- enhanced 'package selection' step - fix berber language image's transparency - fix displaying current security level in GUI (regression introduced on 2008-08-29) diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index 6f92dcb2f..ac9efc24e 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -926,10 +926,12 @@ sub ask_browse_tree_info { 0, gtknew('Frame', text => N("Info"), child => gtknew('ScrolledWindow', child => my $info = gtknew('TextView', editable => 0, height => 100)), ) ]), + 0, Gtk2::HSeparator->new, 0, my $status = gtknew('Label'), if_($common->{auto_deps}, 0, gtknew('CheckButton', text => $common->{auto_deps}, active_ref => \$common->{state}{auto_deps}) ), + 0, Gtk2::HSeparator->new, 0, my $box2 = gtknew('HBox', spacing => 10), ])); |