all repos — openbox @ efa508a2a27ef9b79ec5880858b04998932ae49b

openbox fork - make it a bit more like ryudo

show clients with the skip_taskbar property set in the client_list_menu if they're iconic
Mikael Magnusson mikachu@comhem.se
commit

efa508a2a27ef9b79ec5880858b04998932ae49b

parent

b9532883a237fa8e04b7e6d1917e22f7518bbb19

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M openbox/client_list_menu.copenbox/client_list_menu.c

@@ -51,7 +51,7 @@ menu_clear_entries(menu);

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;