cosmetic and documente Bool-s attribute in Client
This commit is contained in:
parent
b1dcf6c71b
commit
71b7860ba3
2
client.c
2
client.c
|
@ -606,7 +606,7 @@ unmanage(Client *c, long state, awesome_config *awesomeconf)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
updatesizehints(Client * c)
|
updatesizehints(Client *c)
|
||||||
{
|
{
|
||||||
long msize;
|
long msize;
|
||||||
XSizeHints size;
|
XSizeHints size;
|
||||||
|
|
9
config.h
9
config.h
|
@ -108,7 +108,14 @@ struct Client
|
||||||
Bool unmapped;
|
Bool unmapped;
|
||||||
long flags;
|
long flags;
|
||||||
int border, oldborder;
|
int border, oldborder;
|
||||||
Bool isfixed, ismax, isfloating, wasfloating;
|
/** Store previous floating state before maximizing */
|
||||||
|
Bool wasfloating;
|
||||||
|
/** True if the window is floating */
|
||||||
|
Bool isfloating;
|
||||||
|
/** True if the window is fixed */
|
||||||
|
Bool isfixed;
|
||||||
|
/** True if the window is maximized */
|
||||||
|
Bool ismax;
|
||||||
/** Tags for the client */
|
/** Tags for the client */
|
||||||
Bool *tags;
|
Bool *tags;
|
||||||
/** Next client */
|
/** Next client */
|
||||||
|
|
Loading…
Reference in New Issue