From 54d598d5ffc2f3c6f4646283108a0a69fc77c072 Mon Sep 17 00:00:00 2001 From: "hyatt%netscape.com" Date: Thu, 8 Apr 1999 23:29:27 +0000 Subject: [PATCH] Decreasing height of newly-created windows to 480. Approved by Chris H. --- xpfe/AppCores/src/nsToolkitCore.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) {