diff options
author | hobbs <hobbs> | 2000-01-21 04:33:41 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-01-21 04:33:41 (GMT) |
commit | 6efdc96d666911bae091301b1fccb28bc5865437 (patch) | |
tree | 2f00e1404f2a2edea295224dcf13a729c56f2957 /win | |
parent | 5d080ad3bd19fe3e78b4de1daad45134c1810176 (diff) | |
download | tk-6efdc96d666911bae091301b1fccb28bc5865437.zip tk-6efdc96d666911bae091301b1fccb28bc5865437.tar.gz tk-6efdc96d666911bae091301b1fccb28bc5865437.tar.bz2 |
removed deletehandler for transient master so that they will
always trigger children when made visible
Diffstat (limited to 'win')
-rw-r--r-- | win/tkWinWm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/tkWinWm.c b/win/tkWinWm.c index 4d85587..ca1e819 100644 --- a/win/tkWinWm.c +++ b/win/tkWinWm.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: tkWinWm.c,v 1.16 2000/01/21 03:55:26 hobbs Exp $ + * RCS: @(#) $Id: tkWinWm.c,v 1.17 2000/01/21 04:33:41 hobbs Exp $ */ #include "tkWinInt.h" @@ -2302,9 +2302,11 @@ WmWaitVisibilityProc(clientData, eventPtr) if ((state == NormalState) || (state == ZoomState)) { TkpWmSetState(winPtr, state); UpdateWrapper(winPtr); +#if 0 Tk_DeleteEventHandler((Tk_Window) masterPtr, VisibilityChangeMask, WmWaitVisibilityProc, (ClientData) winPtr); +#endif } } } |