diff options
author | jenglish <jenglish@noemail.net> | 2004-08-10 18:15:58 (GMT) |
---|---|---|
committer | jenglish <jenglish@noemail.net> | 2004-08-10 18:15:58 (GMT) |
commit | 5fa0775379fdfd2f0febc591aed098aded782795 (patch) | |
tree | 0926df001f1b770ec7debbea7b4bfb2b1f415079 /unix | |
parent | b588758b4c623bd064136e1cf4e4cc96d80c24a4 (diff) | |
download | tk-5fa0775379fdfd2f0febc591aed098aded782795.zip tk-5fa0775379fdfd2f0febc591aed098aded782795.tar.gz tk-5fa0775379fdfd2f0febc591aed098aded782795.tar.bz2 |
Fix for #1006686 "wm resizable command not working on Solaris/CDE"
(patch from Colin McDonald).
FossilOrigin-Name: 3268df43646744bf64c3276ecb5dd17bd0f7a8cc
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkUnixWm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/unix/tkUnixWm.c b/unix/tkUnixWm.c index 08da60b..ffd00f9 100644 --- a/unix/tkUnixWm.c +++ b/unix/tkUnixWm.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnixWm.c,v 1.43 2004/07/05 19:19:43 jenglish Exp $ + * RCS: @(#) $Id: tkUnixWm.c,v 1.44 2004/08/10 18:16:00 jenglish Exp $ */ #include "tkPort.h" @@ -4264,10 +4264,12 @@ UpdateSizeHints(winPtr, newWidth, newHeight) if (wmPtr->flags & WM_WIDTH_NOT_RESIZABLE) { hintsPtr->max_width = hintsPtr->min_width = newWidth; + hintsPtr->flags |= PMaxSize; } if (wmPtr->flags & WM_HEIGHT_NOT_RESIZABLE) { hintsPtr->max_height = hintsPtr->min_height = newHeight + wmPtr->menuHeight; + hintsPtr->flags |= PMaxSize; } XSetWMNormalHints(winPtr->display, wmPtr->wrapperPtr->window, hintsPtr); |