[gnome-shell] search-entry: Fix clicks on the clear icon



commit 59e3cbb36b0d631bb65bd4d57aa55eb8430ec282
Author: Nohemi Fernandez <nf68 cornell edu>
Date:   Thu Apr 7 12:52:54 2011 -0400

    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 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/viewSelector.js b/js/ui/viewSelector.js
index 35e7aae..87e3e8a 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();



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