diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-10-02 12:27:33 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-10-02 12:27:33 +0000 |
commit | ecc9743b71f5627b65dcd7c19e8e146584509a0b (patch) | |
tree | c639e275fe3fa9cecea3b1c40c0197c197917415 /perl-install | |
parent | f0597c0a2d5b66b53e321ceef6dd0e3bd2a517dc (diff) | |
download | drakx-backup-do-not-use-ecc9743b71f5627b65dcd7c19e8e146584509a0b.tar drakx-backup-do-not-use-ecc9743b71f5627b65dcd7c19e8e146584509a0b.tar.gz drakx-backup-do-not-use-ecc9743b71f5627b65dcd7c19e8e146584509a0b.tar.bz2 drakx-backup-do-not-use-ecc9743b71f5627b65dcd7c19e8e146584509a0b.tar.xz drakx-backup-do-not-use-ecc9743b71f5627b65dcd7c19e8e146584509a0b.zip |
make authentication items be aligned
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rwxr-xr-x | perl-install/standalone/draksec | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 981a039b2..cbd71d83c 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,7 @@ - drakauth: o install lib64sasl2-plug-gssapi on x86_64 (instead of libsasl2-plug-gssapi) +- draksec + o make authentication items be aligned Version 10.4.225 - 1 October 2007, by Thierry Vignaud diff --git a/perl-install/standalone/draksec b/perl-install/standalone/draksec index 34a8b2f34..3e9f09d72 100755 --- a/perl-install/standalone/draksec +++ b/perl-install/standalone/draksec @@ -339,11 +339,11 @@ gtkappend_page( $notebook, gtkshow(create_scrolled_window( gtknew('VBox', children => [ + 1, create_packtable( + $common_opts, map { my ($title, $progs) = @$_; - (0, gtknew('Title2', label => $title), - 1, create_packtable( - $common_opts, + ([ gtknew('Title2', label => $title), '' ], map { [ gtkshow(gtknew('Label_Left', line_wrap => 1, text => $descr{$_} || $_)), @@ -355,7 +355,6 @@ gtkappend_page( ) ]; } split(' ', $progs) - ) ); } ( [ N("Software Management"), 'rpmdrake mandrivaupdate drakrpm-edit-media' ], @@ -364,6 +363,7 @@ gtkappend_page( [ N("System"), 'drakauth drakbackup drakfont draklog drakxservices userdrake drakclock' ], [ N("Boot"), 'drakboot' ], ) + ) ]))), gtknew('Label', text => $auth_string)); |