From 2b0e625c40badf0e24562bebcca682ec3d85df68 Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Tue, 5 Jan 1999 06:39:40 +0000 Subject: cns.c (position_dialog): If the registry position for the window is all zeros, then default to centering the window in the correct place. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11103 dc483132-0cff-0310-8789-dd5450dbe970 --- src/windows/cns/cns.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/windows/cns/cns.c') diff --git a/src/windows/cns/cns.c b/src/windows/cns/cns.c index 8999d9f98c..7af81fc6ad 100644 --- a/src/windows/cns/cns.c +++ b/src/windows/cns/cns.c @@ -194,8 +194,8 @@ position_dialog(HWND hwnd) if (x > scrwidth || y > scrheight || - x + cx < 0 || - y + cy < 0) + x + cx <= 0 || + y + cy <= 0) center_dialog(hwnd); else MoveWindow(hwnd, x, y, cx, cy, TRUE); -- cgit