From 05d204efcb585d9de39da38b4931388ee40ae761 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 28 Jan 2008 15:52:07 +0100 Subject: [PATCH] maximized windows shouldn't be handled --- tag.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tag.h b/tag.h index f24d9e0bd..45cc84fc3 100644 --- a/tag.h +++ b/tag.h @@ -25,7 +25,7 @@ #include "structs.h" /** Check if a client is tiled */ -#define IS_TILED(client, screen) (client && !client->isfloating && client_isvisible(client, screen)) +#define IS_TILED(client, screen) (client && !client->isfloating && !client->ismax && client_isvisible(client, screen)) Tag * tag_new(const char *, Layout *, double, int, int); void tag_view(Tag *, Bool);