maximized windows shouldn't be handled
This commit is contained in:
parent
b016919d59
commit
05d204efcb
2
tag.h
2
tag.h
|
@ -25,7 +25,7 @@
|
||||||
#include "structs.h"
|
#include "structs.h"
|
||||||
|
|
||||||
/** Check if a client is tiled */
|
/** 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);
|
Tag * tag_new(const char *, Layout *, double, int, int);
|
||||||
void tag_view(Tag *, Bool);
|
void tag_view(Tag *, Bool);
|
||||||
|
|
Loading…
Reference in New Issue