]> Dogcows Code - chaz/openbox/commitdiff
Fix typo introduced a few commits ago that made resizing windows hard.
authorMikael Magnusson <mikachu@comhem.se>
Wed, 23 Apr 2008 14:40:22 +0000 (16:40 +0200)
committerMikael Magnusson <mikachu@comhem.se>
Wed, 23 Apr 2008 14:40:22 +0000 (16:40 +0200)
openbox/moveresize.c

index fb527767eb9565f7161dd0c2499ce22a76983dba..f324818df86b058afa692c4b867ab5050c3f3177 100644 (file)
@@ -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
This page took 0.025681 seconds and 4 git commands to generate.