From efa508a2a27ef9b79ec5880858b04998932ae49b Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Mon, 18 Sep 2006 22:03:27 +0000 Subject: [PATCH] show clients with the skip_taskbar property set in the client_list_menu if they're iconic --- 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 dfd7c4e4..9f4e786e 100644 --- a/openbox/client_list_menu.c +++ b/openbox/client_list_menu.c @@ -51,7 +51,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) && !c->skip_taskbar) { + if (client_normal(c) && (!c->skip_taskbar || c->iconic)) { GSList *acts = NULL; ObAction* act; ObMenuEntry *e; -- 2.44.0