From d4be819d916a70f4f56821d89b558673f099546b Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 3 Dec 2008 20:18:10 +0000 Subject: [PATCH] Clear search text after activation svn path=/trunk/; revision=113 --- js/ui/overlay.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/overlay.js b/js/ui/overlay.js index 30028cda6..6a7966261 100644 --- a/js/ui/overlay.js +++ b/js/ui/overlay.js @@ -81,6 +81,7 @@ Sideshow.prototype = { }); }); this._searchEntry.connect('activate', function (se) { + me._searchEntry.text = ''; me._appdisplay.searchActivate(); return true; });