From a7bbdf7d6199d1289f5ecc1b4e25632d88d75387 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Wed, 23 Apr 2008 16:40:22 +0200 Subject: [PATCH] Fix typo introduced a few commits ago that made resizing windows hard. --- openbox/moveresize.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbox/moveresize.c b/openbox/moveresize.c index fb527767..f324818d 100644 --- a/openbox/moveresize.c +++ b/openbox/moveresize.c @@ -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 -- 2.39.2