From 009a8b3a04d8f279b39d6ab8784127ed2bf2a69c Mon Sep 17 00:00:00 2001 From: Marina Zhurakhinskaya Date: Wed, 25 Feb 2009 13:28:10 -0500 Subject: [PATCH] Connect to 'text-changed' signal in the overlay search box Replace connecting to 'notify::text' in the overlay search box by connecting to 'text-changed' signal made available by ClutterText in Clutter 0.9. --- js/ui/overlay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/overlay.js b/js/ui/overlay.js index f9ec2de49..6b61b0f4f 100644 --- a/js/ui/overlay.js +++ b/js/ui/overlay.js @@ -122,7 +122,7 @@ Sideshow.prototype = { text: ""}); this.actor.add_actor(this._searchEntry); this._searchQueued = false; - this._searchEntry.connect('notify::text', function (se, prop) { + this._searchEntry.connect('text-changed', function (se, prop) { if (me._searchQueued) return; me._searchQueued = true;