From 650089e50c8ce815fb5a94b895a7a1a33dbb88db Mon Sep 17 00:00:00 2001 From: "blizzard%redhat.com" Date: Mon, 12 Jul 1999 20:31:03 +0000 Subject: [PATCH] Make sure that mWebShell has the Show() method called on it when mWindow does. This fixes the xlib gray screen and should allow some hacks to be removed from the gtk code. Checkin approved by hyatt and cyeh. --- xpfe/appshell/src/nsWebShellWindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/xpfe/appshell/src/nsWebShellWindow.cpp b/xpfe/appshell/src/nsWebShellWindow.cpp index 7f7a85c5b6f..f2cad0bd595 100644 --- a/xpfe/appshell/src/nsWebShellWindow.cpp +++ b/xpfe/appshell/src/nsWebShellWindow.cpp @@ -1818,6 +1818,7 @@ nsWebShellWindow::OnEndDocumentLoad(nsIDocumentLoader* loader, // Always show the window at this point. mWindow->Show(PR_TRUE); + mWebShell->Show(); return NS_OK; }