From 6457a55f8c1bdcbc62412e099102b5a79654df56 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 8 Jan 2010 14:34:22 -0500 Subject: [PATCH] allow alt-tab etc to move focus to skip_taskbar windows when they are iconic --- openbox/focus.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openbox/focus.c b/openbox/focus.c index a75c170f..73129749 100644 --- a/openbox/focus.c +++ b/openbox/focus.c @@ -328,9 +328,10 @@ gboolean focus_valid_target(ObClient *ft, /* it's not set to skip the taskbar (but this only applies to normal typed windows, and is overridden if the window is modal or if the user asked - for this window to be focused) */ + for this window to be focused, or if the window is iconified) */ ok = ok && (ft->type != OB_CLIENT_TYPE_NORMAL || ft->modal || + ft->iconic || user_request || !ft->skip_taskbar); -- 2.44.0