summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-11-20 16:02:14 +0000
committerThierry Vignaud <tv@mandriva.org>2008-11-20 16:02:14 +0000
commitd62d876903170e021484f1a302792c6327c6129a (patch)
tree84aa6a0110299380128e28e4c6a4075b9fa57a82
parentef9b41aefd1bec2e49b124c198884dd28abf8bc6 (diff)
downloadmgaonline-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--NEWS3
-rwxr-xr-xmdkapplet-restricted-helper8
2 files changed, 9 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index fd34213c..9d1e1030 100644
--- a/NEWS
+++ b/NEWS
@@ -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")),
]);