[gnome-shell] unlockDialog: Explicitly set horizontal alignment



commit efca9e11d6b704ebae2f0337a061d43b6d51131c
Author: Yosef Or Boczko <yoseforb gmail com>
Date:   Wed Dec 11 22:36:49 2013 +0200

    unlockDialog: Explicitly set horizontal alignment
    
    When set to fill, the label will always end up left-aligned, which
    is only correct in LTR locales. Set the alignment explicitly to
    work in both RTL and LTR locales.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=712638

 js/ui/unlockDialog.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/unlockDialog.js b/js/ui/unlockDialog.js
index d43df83..06966a3 100644
--- a/js/ui/unlockDialog.js
+++ b/js/ui/unlockDialog.js
@@ -71,7 +71,7 @@ const UnlockDialog = new Lang.Class({
                                                     child: otherUserLabel,
                                                     reactive: true,
                                                     x_align: St.Align.START,
-                                                    x_fill: true });
+                                                    x_fill: false });
             this._otherUserButton.connect('clicked', Lang.bind(this, this._otherUserClicked));
             this._promptBox.add_child(this._otherUserButton);
         } else {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]