diff options
author | hobbs <hobbs@noemail.net> | 2000-01-21 04:33:41 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 2000-01-21 04:33:41 (GMT) |
commit | 4057dfe33877b9546ead6cf27916ef6fb4ff16cb (patch) | |
tree | 2f00e1404f2a2edea295224dcf13a729c56f2957 | |
parent | d262403fb4b5a4142f963da17894e1abf0429ed5 (diff) | |
download | tk-4057dfe33877b9546ead6cf27916ef6fb4ff16cb.zip tk-4057dfe33877b9546ead6cf27916ef6fb4ff16cb.tar.gz tk-4057dfe33877b9546ead6cf27916ef6fb4ff16cb.tar.bz2 |
removed deletehandler for transient master so that they will
always trigger children when made visible
FossilOrigin-Name: 0a3070379b24c57165a4e203b39f6e0759d5637b
-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 } } } |