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
|
||||
updatesizehints(Client * c)
|
||||
updatesizehints(Client *c)
|
||||
{
|
||||
long msize;
|
||||
XSizeHints size;
|
||||
|
|
9
config.h
9
config.h
|
@ -108,7 +108,14 @@ struct Client
|
|||
Bool unmapped;
|
||||
long flags;
|
||||
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 */
|
||||
Bool *tags;
|
||||
/** Next client */
|
||||
|
|
Loading…
Reference in New Issue