cns.c (position_dialog): If the registry position for the window is
authorTheodore Tso <tytso@mit.edu>
Tue, 5 Jan 1999 06:39:40 +0000 (06:39 +0000)
committerTheodore Tso <tytso@mit.edu>
Tue, 5 Jan 1999 06:39:40 +0000 (06:39 +0000)
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/ChangeLog
src/windows/cns/cns.c

index 1a835147f52e9a9b26ea350912923a0c0afaef48..402a8820912e4495a20ecd2b84b93ab3b9296a8b 100644 (file)
@@ -1,3 +1,9 @@
+Tue Jan  5 01:38:18 1999  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * cns.c (position_dialog): If the registry position for the window
+               is all zeros, then default to centering the window in the
+               correct place.
+
 1998-05-27  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * Folded in enhancements from Cygnus's Kerbnet-1.2 (plus our
index 8999d9f98cf8ad004876b35dad1a41adc4bb1a14..7af81fc6ada83e6b10cc7f60d87b5ce1f42fa669 100644 (file)
@@ -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);