]> Dogcows Code - chaz/openbox/commitdiff
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 dfd7c4e4543dd988e586ee7f920ce395f2c5faa2..9f4e786e07cc4ae723696dc3529ef27fe2f2c0af 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;
This page took 0.02343 seconds and 4 git commands to generate.