diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | generic/tkPanedWindow.c | 7 |
2 files changed, 11 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2002-08-02 Donal K. Fellows <fellowsd@cs.man.ac.uk> + + * generic/tkPanedWindow.c (DestroyPanedWindow): Idle calls need to + be deleted on destruction of the window, or things can *really* go + pear-shaped. + 2002-07-31 Donal K. Fellows <fellowsd@cs.man.ac.uk> * generic/tkPanedWindow.c (PanedWindowReqProc): Postpone pane diff --git a/generic/tkPanedWindow.c b/generic/tkPanedWindow.c index 3e9cd4d..fa741a9 100644 --- a/generic/tkPanedWindow.c +++ b/generic/tkPanedWindow.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: tkPanedWindow.c,v 1.5 2002/07/31 14:10:56 dkf Exp $ + * RCS: @(#) $Id: tkPanedWindow.c,v 1.6 2002/08/02 15:35:53 dkf Exp $ */ #include "tkPort.h" @@ -1436,7 +1436,10 @@ DestroyPanedWindow(pwPtr) if (pwPtr->flags & REDRAW_PENDING) { Tcl_CancelIdleCall(DisplayPanedWindow, (ClientData) pwPtr); } - + if (pwPtr->flags & REQUESTED_RELAYOUT) { + Tcl_CancelIdleCall(ArrangePanes, (ClientData) pwPtr); + } + /* * Clean up the slave list; foreach slave: * o Cancel the slave's structure notification callback |