mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
Fix titlebar drawing on max
This commit is contained in:
parent
7462b44e37
commit
c99bc4dc1d
1 changed files with 7 additions and 5 deletions
12
client.c
12
client.c
|
@ -576,12 +576,14 @@ client_resize(Client *c, area_t geometry, Bool hints)
|
|||
|| layout_get_current(new_screen)->arrange == layout_floating)
|
||||
{
|
||||
if(!c->ismax)
|
||||
{
|
||||
c->f_geometry = geometry;
|
||||
geometry = titlebar_update_geometry(c, geometry);
|
||||
wc.x = geometry.x;
|
||||
wc.y = geometry.y;
|
||||
wc.width = geometry.width;
|
||||
wc.height = geometry.height;
|
||||
geometry = titlebar_update_geometry(c, geometry);
|
||||
wc.x = geometry.x;
|
||||
wc.y = geometry.y;
|
||||
wc.width = geometry.width;
|
||||
wc.height = geometry.height;
|
||||
}
|
||||
}
|
||||
|
||||
XConfigureWindow(globalconf.display, c->win,
|
||||
|
|
Loading…
Reference in a new issue