summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2008-04-23 16:40:22 +0200
committerMikael Magnusson <mikachu@comhem.se>2008-04-23 16:40:22 +0200
commita7bbdf7d6199d1289f5ecc1b4e25632d88d75387 (patch)
tree102f8324248ff705095cb390d501d1e7c880f85a /openbox
parent92bba40cf21cb13aad1fccb421e131ea3049688f (diff)
Fix typo introduced a few commits ago that made resizing windows hard.
Diffstat (limited to 'openbox')
-rw-r--r--openbox/moveresize.c4
1 files 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