From 8dce8b50b7b96898e5237de31501609595c0defd Mon Sep 17 00:00:00 2001
From: Olivier Fourdan <fourdan.olivier@wanadoo.fr>
Date: Sat, 20 May 2006 21:15:56 +0000
Subject: [PATCH] Return focus to the desktop if no other window is focused.

(Old svn revision: 21737)
---
 src/client.h | 3 ++-
 src/focus.c  | 3 +--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/client.h b/src/client.h
index 3df3b0762..8e8e6afe4 100644
--- a/src/client.h
+++ b/src/client.h
@@ -156,7 +156,8 @@
 #define WINDOW_REGULAR_FOCUSABLE        (WINDOW_NORMAL | \
                                          WINDOW_DIALOG | \
                                          WINDOW_MODAL_DIALOG)
-#define WINDOW_TYPE_DONT_FOCUS          (WINDOW_DOCK)
+#define WINDOW_TYPE_DONT_FOCUS          (WINDOW_SPLASHSCREEN | \
+                                         WINDOW_DOCK)
 
 
 
diff --git a/src/focus.c b/src/focus.c
index 26f942b6e..9cbc72557 100644
--- a/src/focus.c
+++ b/src/focus.c
@@ -72,8 +72,7 @@ clientGetTopMostFocusable (ScreenInfo *screen_info, int layer, Client * exclude)
         TRACE ("*** stack window \"%s\" (0x%lx), layer %i", c->name,
             c->window, (int) c->win_layer);
 
-        if ((c->type & (WINDOW_SPLASHSCREEN | WINDOW_DOCK | WINDOW_DESKTOP))
-            || ((layer != WIN_LAYER_DESKTOP) && (c->type & WINDOW_DESKTOP)))
+        if (c->type & WINDOW_TYPE_DONT_FOCUS)
         {
             continue;
         }
-- 
GitLab