From de98f8153b087316bc15a5d4ddd645c6972aad69 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 23 Oct 2003 07:28:14 +0000 Subject: [PATCH] skip taskbar windows dont appear in the client menu --- openbox/client_list_menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/client_list_menu.c b/openbox/client_list_menu.c index 985cb729..2ac29038 100644 --- a/openbox/client_list_menu.c +++ b/openbox/client_list_menu.c @@ -49,7 +49,7 @@ static void desk_menu_update(ObMenuFrame *frame, gpointer data) for (it = focus_order[d->desktop], i = 0; it; it = g_list_next(it), ++i) { ObClient *c = it->data; - if (client_normal(c)) { + if (client_normal(c) && !c->skip_taskbar) { GSList *acts = NULL; ObAction* act; ObMenuEntry *e; -- 2.44.0