mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
also saves real coords in floating layout
This commit is contained in:
parent
001f430c0c
commit
ddfc087c99
1 changed files with 1 additions and 1 deletions
2
client.c
2
client.c
|
@ -437,7 +437,7 @@ client_resize(Client *c, int x, int y, int w, int h, awesome_config *awesomeconf
|
|||
c->y = wc.y = y;
|
||||
c->w = wc.width = w;
|
||||
c->h = wc.height = h;
|
||||
if(c->isfloating)
|
||||
if(c->isfloating || get_current_layout(awesomeconf->tags, awesomeconf->ntags)->arrange == layout_floating)
|
||||
{
|
||||
c->rx = c->x;
|
||||
c->ry = c->y;
|
||||
|
|
Loading…
Reference in a new issue