added max
This commit is contained in:
parent
4641aa2925
commit
6db5ffb6c9
3 changed files with 15 additions and 3 deletions
12
client.c
12
client.c
|
@ -11,6 +11,18 @@
|
|||
#include "util.h"
|
||||
#include "wm.h"
|
||||
|
||||
void
|
||||
max(void *aux)
|
||||
{
|
||||
if(!stack)
|
||||
return;
|
||||
stack->x = sx;
|
||||
stack->y = bh;
|
||||
stack->w = sw - 2;
|
||||
stack->h = sh - bh - 2;
|
||||
resize(stack);
|
||||
}
|
||||
|
||||
void
|
||||
arrange(void *aux)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue