From 004cf3da5c93281f003357138dc0be2c889ba97b Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 22 Feb 2010 11:54:16 -0500 Subject: [PATCH] [appDisplay] Use AUTOMATIC for apps-more, not ALWAYS No need to display a scrollbar if we don't need to, and ALWAYS isn't yet implemented anyways. https://bugzilla.gnome.org/show_bug.cgi?id=609015 --- js/ui/appDisplay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index c30085137..f8fea7a2d 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -101,7 +101,7 @@ AllAppDisplay.prototype = { this._appView.connect('drag-begin', Lang.bind(this, this.close)); this._scrollView.add_actor(this._appView.actor); - this._scrollView.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.ALWAYS); + this._scrollView.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC); this._workId = Main.initializeDeferredWork(this.actor, Lang.bind(this, this._redisplay)); },