[gnome-shell] searchDisplay: Fix alignment of section headers in RTL locales



commit 175ddaa3a109d2f98876263ff2aa3707c6524972
Author: Florian MÃllner <fmuellner gnome org>
Date:   Wed Sep 19 17:04:19 2012 +0200

    searchDisplay: Fix alignment of section headers in RTL locales
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684379

 js/ui/searchDisplay.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/searchDisplay.js b/js/ui/searchDisplay.js
index d92eeb9..5a914bd 100644
--- a/js/ui/searchDisplay.js
+++ b/js/ui/searchDisplay.js
@@ -224,7 +224,7 @@ const SearchResults = new Lang.Class({
                                              vertical: true });
         let title = new St.Label({ style_class: 'search-section-header',
                                    text: provider.title });
-        providerBox.add(title);
+        providerBox.add(title, { x_fill: false, x_align: St.Align.START });
 
         let resultDisplayBin = new St.Bin({ style_class: 'search-section-results',
                                             x_fill: true,



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