summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixWm.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2012-08-25 01:55:24 (GMT)
committerdgp <dgp@users.sourceforge.net>2012-08-25 01:55:24 (GMT)
commitabe795d8463891270f64f05b7ffb36988d0952b9 (patch)
tree81b84b282cc0086773306219fe893a94fa96b9e8 /unix/tkUnixWm.c
parent72625aa505c401c971fc822b2dcb05938e18f86c (diff)
parentef5ce1e5a1b79ba793a9a32118411ea7eda12bbd (diff)
downloadtk-abe795d8463891270f64f05b7ffb36988d0952b9.zip
tk-abe795d8463891270f64f05b7ffb36988d0952b9.tar.gz
tk-abe795d8463891270f64f05b7ffb36988d0952b9.tar.bz2
3554026 3561016 Better fix from Emiliano Gavilan.
Diffstat (limited to 'unix/tkUnixWm.c')
-rw-r--r--unix/tkUnixWm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tkUnixWm.c b/unix/tkUnixWm.c
index 60aaceb..99fcf73 100644
--- a/unix/tkUnixWm.c
+++ b/unix/tkUnixWm.c
@@ -6757,14 +6757,14 @@ TkSetTransientFor(Tk_Window tkwin, Tk_Window parent)
if (parent == None) {
parent = Tk_Parent(tkwin);
while (!Tk_IsTopLevel(parent))
- parent = Tk_Parent(tkwin);
+ parent = Tk_Parent(parent);
}
/*
* Prevent crash due to incomplete initialization, or other problems.
* [Bugs 3554026, 3561016]
*/
if (((TkWindow *)parent)->wmInfoPtr->wrapperPtr == NULL) {
- return;
+ CreateWrapper(((TkWindow *)parent)->wmInfoPtr);
}
XSetTransientForHint(Tk_Display(tkwin),
((TkWindow *)tkwin)->wmInfoPtr->wrapperPtr->window,