search: Fix Return for searching in the overview

This commit is contained in:
Jasper St. Pierre 2013-10-30 17:42:49 -04:00
parent da1a8308b6
commit d401b493a4

View File

@ -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);
},