[gnome-shell] search: Fix Return for searching in the overview



commit d401b493a49db2fbaec12238538cfb0b1c2bb880
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Wed Oct 30 17:42:49 2013 -0400

    search: Fix Return for searching in the overview

 js/ui/search.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/search.js b/js/ui/search.js
index 4ce6f94..df6fda7 100644
--- a/js/ui/search.js
+++ b/js/ui/search.js
@@ -178,10 +178,10 @@ const SearchResult = new Lang.Class({
                                      y_fill: true });
 
         this.actor._delegate = this;
-        this.actor.connect('clicked', Lang.bind(this, this._activate));
+        this.actor.connect('clicked', Lang.bind(this, this.activate));
     },
 
-    _activate: function() {
+    activate: function() {
         this.emit('activate', this.metaInfo.id);
     },
 


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