From 46983deb42b40a2cdd556937be85bb0df6dc8841 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. git-svn-id: svn://10.0.0.236/trunk@39015 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpfe/appshell/src/nsWebShellWindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mozilla/xpfe/appshell/src/nsWebShellWindow.cpp b/mozilla/xpfe/appshell/src/nsWebShellWindow.cpp index 7f7a85c5b6f..f2cad0bd595 100644 --- a/mozilla/xpfe/appshell/src/nsWebShellWindow.cpp +++ b/mozilla/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; }