Fix client border changing issues

The code was zeroing the flag that tells e to change the border after
the callbacks about frame changes. This means that one couldn't change
the border from within those callbacks. This commit fixes this issue.
This commit is contained in:
Tom Hacohen 2014-03-31 15:16:19 +01:00
parent 0709b9cfdd
commit dc05d96659
1 changed files with 1 additions and 1 deletions

View File

@ -2142,8 +2142,8 @@ e_client_idler_before(void)
if ((ec->border.changed) && (!ec->shaded) &&
(!(((ec->maximized & E_MAXIMIZE_TYPE) == E_MAXIMIZE_FULLSCREEN))))
{
_e_client_frame_update(ec);
ec->border.changed = 0;
_e_client_frame_update(ec);
}
_e_client_hook_call(E_CLIENT_HOOK_EVAL_POST_FRAME_ASSIGN, ec);
}