From 59e3cbb36b0d631bb65bd4d57aa55eb8430ec282 Mon Sep 17 00:00:00 2001 From: Nohemi Fernandez Date: Thu, 7 Apr 2011 12:52:54 -0400 Subject: [PATCH] search-entry: Fix clicks on the clear icon onTextChanged() called a non-existent method, fix that https://bugzilla.gnome.org/show_bug.cgi?id=647098 --- js/ui/viewSelector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/viewSelector.js b/js/ui/viewSelector.js index 35e7aae8b..87e3e8a8e 100644 --- a/js/ui/viewSelector.js +++ b/js/ui/viewSelector.js @@ -226,7 +226,7 @@ SearchTab.prototype = { if (this._iconClickedId == 0) { this._iconClickedId = this._entry.connect('secondary-icon-clicked', Lang.bind(this, function() { - this.reset(); + this._reset(); })); } this._activate();