From: Mikael Magnusson Date: Mon, 18 Sep 2006 22:03:27 +0000 (+0000) Subject: show clients with the skip_taskbar property set in the client_list_menu if they're... X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=efa508a2a27ef9b79ec5880858b04998932ae49b;p=chaz%2Fopenbox show clients with the skip_taskbar property set in the client_list_menu if they're iconic --- 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;