From 68e011d4cb8ab75943408e5ee08342c180cd50cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 7 Nov 2012 18:06:02 +0100 Subject: [PATCH] polkitAgent: Expand password entry to the full width Due to an oversight, the width of the password entry is currently determined by the length of the message description. Fix the flags so that the entry spans the entire width of the dialog. https://bugzilla.gnome.org/show_bug.cgi?id=684810 --- js/ui/components/polkitAgent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/components/polkitAgent.js b/js/ui/components/polkitAgent.js index 2f710df84..db32976a6 100644 --- a/js/ui/components/polkitAgent.js +++ b/js/ui/components/polkitAgent.js @@ -49,7 +49,7 @@ const AuthenticationDialog = new Lang.Class({ let messageBox = new St.BoxLayout({ style_class: 'prompt-dialog-message-layout', vertical: true }); mainContentBox.add(messageBox, - { y_align: St.Align.START }); + { expand: true, y_align: St.Align.START }); this._subjectLabel = new St.Label({ style_class: 'prompt-dialog-headline', text: _("Authentication Required") });