maximized windows shouldn't be handled

This commit is contained in:
Julien Danjou 2008-01-28 15:52:07 +01:00
parent b016919d59
commit 05d204efcb

2
tag.h
View file

@ -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);