diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-10-23 07:28:14 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-10-23 07:28:14 +0000 |
| commit | de98f8153b087316bc15a5d4ddd645c6972aad69 (patch) | |
| tree | eb2e2c378f22f56dbbc9483ad81b0afdb2daa198 /openbox/client_list_menu.c | |
| parent | 9fae7e8b1ed7520f9c9193a09931798b5da523f0 (diff) | |
skip taskbar windows dont appear in the client menu
Diffstat (limited to 'openbox/client_list_menu.c')
| -rw-r--r-- | openbox/client_list_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/client_list_menu.c b/openbox/client_list_menu.c index 985cb729..2ac29038 100644 --- a/openbox/client_list_menu.c +++ b/openbox/client_list_menu.c @@ -49,7 +49,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)) { + if (client_normal(c) && !c->skip_taskbar) { GSList *acts = NULL; ObAction* act; ObMenuEntry *e; |
