From 619fa1bff854f566171d60abf4348a6dc1f2800f Mon Sep 17 00:00:00 2001 From: Yosef Or Boczko Date: Wed, 11 Dec 2013 23:14:08 +0200 Subject: [PATCH] polkitAgent: Align more a string to the right side in RTL Signed-off-by: Yosef Or Boczko --- 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 5ce272c54..85558d386 100644 --- a/js/ui/components/polkitAgent.js +++ b/js/ui/components/polkitAgent.js @@ -142,7 +142,7 @@ const AuthenticationDialog = new Lang.Class({ this._errorMessageLabel = new St.Label({ style_class: 'prompt-dialog-error-label' }); this._errorMessageLabel.clutter_text.ellipsize = Pango.EllipsizeMode.NONE; this._errorMessageLabel.clutter_text.line_wrap = true; - messageBox.add(this._errorMessageLabel); + messageBox.add(this._errorMessageLabel, { x_fill: false, x_align: St.Align.START }); this._errorMessageLabel.hide(); this._infoMessageLabel = new St.Label({ style_class: 'prompt-dialog-info-label' });