Fix typo introduced a few commits ago that made resizing windows hard.
This commit is contained in:
parent
92bba40cf2
commit
a7bbdf7d61
1 changed files with 2 additions and 2 deletions
|
@ -359,8 +359,8 @@ static void do_resize(void)
|
|||
h = cur_h;
|
||||
client_try_configure(moveresize_client, &x, &y, &w, &h,
|
||||
&lw, &lh, TRUE);
|
||||
if (!w == moveresize_client->area.width &&
|
||||
h == moveresize_client->area.height)
|
||||
if (!(w == moveresize_client->area.width &&
|
||||
h == moveresize_client->area.height))
|
||||
{
|
||||
|
||||
#ifdef SYNC
|
||||
|
|
Loading…
Reference in a new issue