From 634520a70a0309d83508ecfa28619a7ec3d0c28a Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Fri, 23 Jul 2010 12:22:03 +0200 Subject: [PATCH] Make fullscreen stacking respect EWMH Fullscreen windows should only get their own layer when they have the input focus. When they are unfocused they should be treated normally (FS#560). Signed-off-by: Uli Schlachter --- stack.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stack.c b/stack.c index dbc0ff9eb..9896add59 100644 --- a/stack.c +++ b/stack.c @@ -20,6 +20,7 @@ */ #include "ewmh.h" +#include "screen.h" #include "stack.h" #include "objects/client.h" #include "objects/wibox.h" @@ -116,7 +117,8 @@ client_layer_translator(client_t *c) /* first deal with user set attributes */ if(c->ontop) return WINDOW_LAYER_ONTOP; - else if(c->fullscreen) + /* Fullscreen windows only get their own layer when they have the focus */ + else if(c->fullscreen && globalconf.screen_focus->client_focus == c) return WINDOW_LAYER_FULLSCREEN; else if(c->above) return WINDOW_LAYER_ABOVE;