client: fullscreen does not set need_arrange

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-04-17 23:47:03 +02:00
parent 1c92023a12
commit d6ff48a108
2 changed files with 2 additions and 2 deletions

View file

@ -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");

View file

@ -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)