make client_reconfigure a non-user-type client_configure
This commit is contained in:
parent
75b23047d6
commit
d085756572
1 changed files with 4 additions and 1 deletions
|
@ -1091,8 +1091,11 @@ static void client_change_allowed_actions(Client *self)
|
|||
|
||||
void client_reconfigure(Client *self)
|
||||
{
|
||||
/* by making this pass FALSE for user, we avoid the emacs event storm where
|
||||
every configurenotify causes an update in its normal hints, i think this
|
||||
is generally what we want anyways... */
|
||||
client_configure(self, Corner_TopLeft, self->area.x, self->area.y,
|
||||
self->area.width, self->area.height, TRUE, TRUE);
|
||||
self->area.width, self->area.height, FALSE, TRUE);
|
||||
}
|
||||
|
||||
void client_update_wmhints(Client *self)
|
||||
|
|
Loading…
Reference in a new issue