diff options
author | jenglish <jenglish@flightlab.com> | 2004-04-04 20:08:39 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2004-04-04 20:08:39 (GMT) |
commit | 94da1855bfb5427e7f876dfb71c009df2e912eeb (patch) | |
tree | 0e6ceb40def3be89d904c5f7df6b83970e484fd7 /unix | |
parent | 70074e3ac26b510594d84e1200f827db34a75089 (diff) | |
download | tk-94da1855bfb5427e7f876dfb71c009df2e912eeb.zip tk-94da1855bfb5427e7f876dfb71c009df2e912eeb.tar.gz tk-94da1855bfb5427e7f876dfb71c009df2e912eeb.tar.bz2 |
Fix for bug #915350 "Tk sets min, max size in WM_HINTS when it shouldn't"
and #922336 "Tk apps have no maximize window button under KDE-3.2.1"
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkUnixWm.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/unix/tkUnixWm.c b/unix/tkUnixWm.c index b52b439..94162bd 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.40 2004/01/31 20:27:52 jenglish Exp $ + * RCS: @(#) $Id: tkUnixWm.c,v 1.41 2004/04/04 20:08:39 jenglish Exp $ */ #include "tkPort.h" @@ -2279,6 +2279,13 @@ WmMaxsizeCmd(tkwin, winPtr, interp, objc, objv) wmPtr->maxWidth = width; wmPtr->maxHeight = height; wmPtr->flags |= WM_UPDATE_SIZE_HINTS; + + if (width <= 0 && height <= 0) { + wmPtr->sizeHintsFlags &= ~PMaxSize; + } else { + wmPtr->sizeHintsFlags |= PMaxSize; + } + WmUpdateGeom(wmPtr, winPtr); return TCL_OK; } @@ -4269,7 +4276,7 @@ UpdateSizeHints(winPtr, newWidth, newHeight) hintsPtr->max_aspect.x = wmPtr->maxAspect.x; hintsPtr->max_aspect.y = wmPtr->maxAspect.y; hintsPtr->win_gravity = wmPtr->gravity; - hintsPtr->flags = wmPtr->sizeHintsFlags | PMinSize | PMaxSize; + hintsPtr->flags = wmPtr->sizeHintsFlags | PMinSize; /* * If the window isn't supposed to be resizable, then set the |