show clients with the skip_taskbar property set in the client_list_menu if they're...
authorMikael Magnusson <mikachu@comhem.se>
Mon, 18 Sep 2006 22:03:27 +0000 (22:03 +0000)
committerMikael Magnusson <mikachu@comhem.se>
Mon, 18 Sep 2006 22:03:27 +0000 (22:03 +0000)
openbox/client_list_menu.c

index dfd7c4e..9f4e786 100644 (file)
@@ -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;