diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-11-20 16:02:14 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-11-20 16:02:14 +0000 |
commit | d62d876903170e021484f1a302792c6327c6129a (patch) | |
tree | 84aa6a0110299380128e28e4c6a4075b9fa57a82 | |
parent | ef9b41aefd1bec2e49b124c198884dd28abf8bc6 (diff) | |
download | mgaonline-d62d876903170e021484f1a302792c6327c6129a.tar mgaonline-d62d876903170e021484f1a302792c6327c6129a.tar.gz mgaonline-d62d876903170e021484f1a302792c6327c6129a.tar.bz2 mgaonline-d62d876903170e021484f1a302792c6327c6129a.tar.xz mgaonline-d62d876903170e021484f1a302792c6327c6129a.zip |
(get_restricted_authentication) pack buttons at start
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | mdkapplet-restricted-helper | 8 |
2 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,6 @@ +- mdkapplet-restricted-helper + o pack buttons at start + Version 2.68 - 20 November 2008 - mdkapplet diff --git a/mdkapplet-restricted-helper b/mdkapplet-restricted-helper index 71bd5fb3..9474c719 100755 --- a/mdkapplet-restricted-helper +++ b/mdkapplet-restricted-helper @@ -87,12 +87,16 @@ sub get_restricted_authentication() { get_banner(), gtknew('Label_Left', text => N("Please fill in your account ID to add an additional package medium"), @common), - new_link_button('https://my.mandriva.com/info', N("More information on your user account")), + gtknew('HButtonBox', layout => 'start', children_tight => [ + new_link_button('https://my.mandriva.com/info', N("More information on your user account")) + ]), gtknew('Table', children => [ [ N("Your email"), $email_w = gtknew('Entry') ], [ N("Your password"), $password_w ], ]), - new_link_button('https://my.mandriva.com/reset/password/', N("Forgotten password")), + gtknew('HButtonBox', layout => 'start', children_tight => [ + new_link_button('https://my.mandriva.com/reset/password/', N("Forgotten password")) + ]), create_okcancel($w, N("Next"), N("Cancel")), ]); |