mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
maximized windows shouldn't be handled
This commit is contained in:
parent
b016919d59
commit
05d204efcb
1 changed files with 1 additions and 1 deletions
2
tag.h
2
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);
|
||||
|
|
Loading…
Reference in a new issue