From e9caacf9e58f140fb8d12dfb9a266cd882a87015 Mon Sep 17 00:00:00 2001 From: "sspitzer%netscape.com" Date: Wed, 13 Feb 2002 19:58:32 +0000 Subject: [PATCH] fix for #125305. disable "Properties" button after the "Clear" button is hit. r/sr=bienvenu --- mailnews/base/search/resources/content/ABSearchDialog.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mailnews/base/search/resources/content/ABSearchDialog.js b/mailnews/base/search/resources/content/ABSearchDialog.js index bdad0349de03..837162114c60 100644 --- a/mailnews/base/search/resources/content/ABSearchDialog.js +++ b/mailnews/base/search/resources/content/ABSearchDialog.js @@ -92,12 +92,14 @@ function initializeSearchWindowWidgets() function onSearchStop() { - // ??? } function onAbSearchReset(event) { + gPropertiesButton.setAttribute("disabled","true"); + CloseAbView(); + onReset(event); }