show clients with the skip_taskbar property set in the client_list_menu if they're iconic
This commit is contained in:
parent
b9532883a2
commit
efa508a2a2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue