From 05a89ebaad0ac1281b323984027134bb22db82d1 Mon Sep 17 00:00:00 2001 From: "ducarroz%netscape.com" Date: Sat, 12 Feb 2000 00:55:14 +0000 Subject: [PATCH] Fix for bug 24182. For some reason, we cannot set the thread column icon during the load of the window. This is a temporary fix. R=putterman git-svn-id: svn://10.0.0.236/trunk@60552 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/mailnews/base/resources/content/msgMail3PaneWindow.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mozilla/mailnews/base/resources/content/msgMail3PaneWindow.js b/mozilla/mailnews/base/resources/content/msgMail3PaneWindow.js index 294e7952662..1e2ea3f48be 100644 --- a/mozilla/mailnews/base/resources/content/msgMail3PaneWindow.js +++ b/mozilla/mailnews/base/resources/content/msgMail3PaneWindow.js @@ -490,7 +490,9 @@ function OnLoadThreadPane(threadTree) messageDataSource = messageDataSource.QueryInterface(Components.interfaces.nsIRDFDataSource); threadTree.database.AddDataSource(messageDataSource); - ShowThreads(false); + //FIX ME: Tempory patch for bug 24182 + //ShowThreads(false); + setTimeout("ShowThreads(false);", 0); } /* Functions for accessing particular parts of the window*/