diff --git a/xpfe/AppCores/src/nsToolkitCore.cpp b/xpfe/AppCores/src/nsToolkitCore.cpp index 8b6d2cfa94a6..00566799da04 100644 --- a/xpfe/AppCores/src/nsToolkitCore.cpp +++ b/xpfe/AppCores/src/nsToolkitCore.cpp @@ -152,7 +152,7 @@ nsToolkitCore::ShowDialog(const nsString& aUrl, nsIDOMWindow* aParent) { nsCOMPtr parent = DOMWindowToWebShellWindow(aParent); appShell->CreateDialogWindow(parent, urlObj, controllerCID, window, - nsnull, nsnull, 615, 650); + nsnull, nsnull, 615, 480); nsServiceManager::ReleaseService(kAppShellServiceCID, appShell); if (window != nsnull) @@ -186,7 +186,7 @@ nsToolkitCore::ShowWindow(const nsString& aUrl, nsIDOMWindow* aParent) { nsCOMPtr parent = DOMWindowToWebShellWindow(aParent); appShell->CreateTopLevelWindow(parent, urlObj, controllerCID, window, - nsnull, nsnull, 615, 650); + nsnull, nsnull, 615, 480); nsServiceManager::ReleaseService(kAppShellServiceCID, appShell); if (window != nsnull) @@ -220,7 +220,7 @@ nsToolkitCore::ShowModalDialog(const nsString& aUrl, nsIDOMWindow* aParent) { nsCOMPtr parent = DOMWindowToWebShellWindow(aParent); appShell->CreateDialogWindow(parent, urlObj, controllerCID, window, - nsnull, nsnull, 615, 650); + nsnull, nsnull, 615, 480); nsServiceManager::ReleaseService(kAppShellServiceCID, appShell); if (window != nsnull) {