From 2755967cfd01a2ddb9efa3be42533a6dbaba86a6 Mon Sep 17 00:00:00 2001 From: jenglish Date: Tue, 10 Aug 2004 18:15:59 +0000 Subject: Fix for #1006686 "wm resizable command not working on Solaris/CDE" (patch from Colin McDonald). --- ChangeLog | 5 +++++ unix/tkUnixWm.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b15b4c6..5f6e525 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-08-10 Joe English + + * unix/tkUnixWm.c: Fix for #1006686 "wm resizable command + not working on Solaris/CDE" (patch from Colin McDonald). + 2004-08-09 Mo DeJong * tests/canvText.test: 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); -- cgit v0.12