mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
client: fullscreen does not set need_arrange
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
1c92023a12
commit
d6ff48a108
2 changed files with 2 additions and 2 deletions
1
client.c
1
client.c
|
@ -819,7 +819,6 @@ client_setfullscreen(client_t *c, bool s)
|
|||
client_setborder(c, c->border_fs);
|
||||
}
|
||||
client_resize(c, geometry, false);
|
||||
client_need_arrange(c);
|
||||
client_stack();
|
||||
ewmh_client_update_hints(c);
|
||||
hook_property(client, c, "fullscreen");
|
||||
|
|
|
@ -98,7 +98,8 @@ hooks.property.register(function (c, prop)
|
|||
and (prop == "size_hints_honor"
|
||||
or prop == "struts"
|
||||
or prop == "minimized"
|
||||
or prop == "sticky") then
|
||||
or prop == "sticky"
|
||||
or prop == "fullscreen") then
|
||||
on_arrange(c.screen)
|
||||
end
|
||||
end)
|
||||
|
|
Loading…
Reference in a new issue