From 93c797329eb557f3477740abf33e8fb361531006 Mon Sep 17 00:00:00 2001 From: Jonathan Westhues Date: Tue, 27 May 2008 01:59:19 -0800 Subject: [PATCH] More reasonable default window locations. [git-p4: depot-paths = "//depot/solvespace/": change = 1751] --- win32/w32main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win32/w32main.cpp b/win32/w32main.cpp index c518a97..0db4f43 100644 --- a/win32/w32main.cpp +++ b/win32/w32main.cpp @@ -764,7 +764,7 @@ static void CreateMainWindows(void) "SolveSpace (Graphics Window)", WS_OVERLAPPED | WS_THICKFRAME | WS_CLIPCHILDREN | WS_MAXIMIZEBOX | WS_MINIMIZEBOX | WS_SYSMENU | WS_SIZEBOX | WS_CLIPSIBLINGS, - 600, 300, 200, 200, NULL, top, Instance, NULL); + 50, 50, 900, 600, NULL, top, Instance, NULL); if(!GraphicsWnd) oops(); CreateGlContext(); @@ -788,7 +788,7 @@ static void CreateMainWindows(void) // window is a child of the graphics window. TextWnd = CreateWindowEx(0, "TextWnd", "SolveSpace (Text Window)", WS_THICKFRAME | WS_CLIPCHILDREN, - 10, 10, 600, 300, GraphicsWnd, (HMENU)NULL, Instance, NULL); + 650, 500, 420, 300, GraphicsWnd, (HMENU)NULL, Instance, NULL); if(!TextWnd) oops(); TextWndScrollBar = CreateWindowEx(0, WC_SCROLLBAR, "", WS_CHILD |