commit | 48c6eb55f7ebf59c00260678eda22e2069d2c3d8 | [log] [tgz] |
---|---|---|
author | Abey George <abey@macadamian.com> | Fri Sep 03 12:33:40 1999 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Sep 03 12:33:40 1999 +0000 |
tree | 4ad01fb7fcd196e65c7dbe0721a845965e31152f | |
parent | 7026a3d1011a2c616e356ceca2a6a00264782afb [diff] [blame] |
Fixed resizing bugs for windows with WS_THICKFRAME and WS_DLGFRAME styles.
diff --git a/windows/nonclient.c b/windows/nonclient.c index beb10f8..60428f6 100644 --- a/windows/nonclient.c +++ b/windows/nonclient.c
@@ -63,7 +63,7 @@ #define HAS_THICKFRAME(style,exStyle) \ (((style) & WS_THICKFRAME) && \ - !((exStyle) & WS_EX_DLGMODALFRAME)) + !(((style) & (WS_DLGFRAME|WS_BORDER)) == WS_DLGFRAME)) #define HAS_THINFRAME(style) \ (((style) & WS_BORDER) || !((style) & (WS_CHILD | WS_POPUP)))