diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-07 14:22:06 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-07 14:22:06 (GMT) |
commit | 7a9728f81b02f84b4d10e87ae7cfde37f65e9e79 (patch) | |
tree | 3a2bac232ac08eadf285f6ea9e5ecfb6225840d9 | |
parent | 75e7ae483a869550bca05be6d240c753acd49392 (diff) | |
download | tk-7a9728f81b02f84b4d10e87ae7cfde37f65e9e79.zip tk-7a9728f81b02f84b4d10e87ae7cfde37f65e9e79.tar.gz tk-7a9728f81b02f84b4d10e87ae7cfde37f65e9e79.tar.bz2 |
[Bug 3574708]: Move window liveness checks to better location.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | generic/tkFocus.c | 12 |
2 files changed, 16 insertions, 3 deletions
@@ -1,3 +1,10 @@ +2012-11-07 Donal K. Fellows <dkf@users.sf.net> + + * generic/tkFocus.c (TkSetFocusWin): [Bug 3574708]: Move window + liveness into this function from caller sites to ensure that there are + no paths where things can trip up on setting the focus to a partially + dead window. + 2012-10-24 Don Porter <dgp@users.sourceforge.net> * macosx/tkMacOSXWm.c: [Bug 3574893] Add overlooked toplevel ref diff --git a/generic/tkFocus.c b/generic/tkFocus.c index 4814c17..85093ee 100644 --- a/generic/tkFocus.c +++ b/generic/tkFocus.c @@ -160,9 +160,7 @@ Tk_FocusObjCmd( if (newPtr == NULL) { return TCL_ERROR; } - if (!(newPtr->flags & TK_ALREADY_DEAD)) { - TkSetFocusWin(newPtr, 0); - } + TkSetFocusWin(newPtr, 0); return TCL_OK; } } @@ -552,6 +550,14 @@ TkSetFocusWin( TkWindow *topLevelPtr; int allMapped, serial; + /* + * Don't set focus if window is already dead. [Bug 3574708] + */ + + if (winPtr->flags & TK_ALREADY_DEAD) { + return; + } + displayFocusPtr = FindDisplayFocusInfo(winPtr->mainPtr, winPtr->dispPtr); /* |