From: Mikael Magnusson Date: Wed, 16 Apr 2008 15:31:09 +0000 (+0200) Subject: Missed a pair of parentheses when I resolved a merge conflict. You can now resize... X-Git-Tag: release-3.4.7.1~1 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=c55831190749014b98ac069cce5c97cbcbf81fee;p=mikachu%2Fopenbox.git Missed a pair of parentheses when I resolved a merge conflict. You can now resize windows again. --- 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