From db1610c7dc4b8b15b367a6e5b62a29314bd5996a Mon Sep 17 00:00:00 2001 From: David Palacio Date: Tue, 4 Oct 2011 10:22:43 -0500 Subject: [PATCH] Desktop clients may not be visible on all tags. Usually desktop clients are on a sticky state. If the client is not sticky, only show on selected tags. Signed-off-by: Uli Schlachter --- objects/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/client.c b/objects/client.c index c024bb9ea..f7a740336 100644 --- a/objects/client.c +++ b/objects/client.c @@ -143,7 +143,7 @@ client_set_class_instance(lua_State *L, int cidx, const char *class, const char bool client_maybevisible(client_t *c) { - if(c->sticky || c->type == WINDOW_TYPE_DESKTOP) + if(c->sticky) return true; foreach(tag, c->screen->tags)