summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDanny Baumann <dannybaumann@web.de>2008-10-02 09:44:25 +0200
committerDanny Baumann <dannybaumann@web.de>2008-10-02 09:44:25 +0200
commit46e4aa0308fe542f2586835e86ee249ebea6fafb (patch)
tree3c30170364c604c86bed073b5f8dc96e01f0d82e /src
parent778a39ee1f27112a7c579e16fe42acecbb3a62f6 (diff)
Also treat utility, menu and toolbar windows as group transients.
Diffstat (limited to 'src')
-rw-r--r--src/window.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index ba576f1a..8b24eacb 100644
--- a/src/window.c
+++ b/src/window.c
@@ -2920,7 +2920,10 @@ isGroupTransient (CompWindow *w,
if (w->transientFor == None || w->transientFor == w->screen->root)
{
- if (w->type & (CompWindowTypeDialogMask |
+ if (w->type & (CompWindowTypeUtilMask |
+ CompWindowTypeToolbarMask |
+ CompWindowTypeMenuMask |
+ CompWindowTypeDialogMask |
CompWindowTypeModalDialogMask))
{
if (w->clientLeader == clientLeader)