Make statusbar appear without requiring window resize

This commit is contained in:
law%netscape.com 1998-11-20 22:34:12 +00:00
Родитель 04dea9e450
Коммит 59287c59f8
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -511,7 +511,8 @@ nsBrowserWindow::Init(nsIAppShell* aAppShell,
}
// Now lay it all out
Layout(r.width, r.height);
mWindow->Resize(0, 0, PR_FALSE); // force resize
mWindow->Resize(r.width, r.height, PR_FALSE);
return NS_OK;