[gnome-documents/wip/ui-changes] searchbar: don't start with no_show_all



commit 707697f3c3d016f5655725df09364b10d0c56579
Author: Cosimo Cecchi <cosimoc gnome org>
Date:   Tue Dec 4 16:06:08 2012 -0500

    searchbar: don't start with no_show_all
    
    Since we're controlling the visibility of the entry manually anyway,
    don't mark it as no_show_all, since that causes bugs when trying to
    expand the search toolbar to its full height later.

 src/searchbar.js |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)
---
diff --git a/src/searchbar.js b/src/searchbar.js
index 2b654d7..621fde9 100644
--- a/src/searchbar.js
+++ b/src/searchbar.js
@@ -540,8 +540,7 @@ const OverviewSearchbar = new Lang.Class({
 
     createSearchWidgets: function() {
         // create the search entry
-        this._searchEntry = new Gd.TaggedEntry({ width_request: 500,
-                                                 no_show_all: true });
+        this._searchEntry = new Gd.TaggedEntry({ width_request: 500 });
         this._searchEntry.connect('tag-clicked',
             Lang.bind(this, this._onTagClicked));
         this._searchEntry.set_text(Global.searchController.getString());



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