diff options
Diffstat (limited to 'x11-wm/awesome/files/patch-client.c')
-rw-r--r-- | x11-wm/awesome/files/patch-client.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/x11-wm/awesome/files/patch-client.c b/x11-wm/awesome/files/patch-client.c index 8ca7dcd25a5e..4b76db9b58e1 100644 --- a/x11-wm/awesome/files/patch-client.c +++ b/x11-wm/awesome/files/patch-client.c @@ -1,5 +1,17 @@ --- client.c.orig 2009-01-08 12:04:44.000000000 +0200 +++ client.c 2009-01-31 21:03:28.000000000 +0200 +@@ -838,6 +838,11 @@ client_unmanage(client_t *c) + { + tag_array_t *tags = &globalconf.screens[c->screen].tags; + ++ /* Reset transient_for attributes of widows that maybe refering to us */ ++ for(client_t *tc = globalconf.clients; tc; tc = tc->next) ++ if(tc->transient_for == c) ++ tc->transient_for = NULL; ++ + if(globalconf.screens[c->phys_screen].client_focus == c) + client_unfocus(c); + @@ -1455,7 +1455,7 @@ xcb_get_wm_class_unchecked(globalconf.connection, (*c)->win), &hint, NULL)) |