summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Fourdan <fourdan@xfce.org>2010-12-03 14:08:03 +0100
committerOlivier Fourdan <fourdan@xfce.org>2010-12-03 14:08:03 +0100
commit6b00f9822033727ba5d173ab12beb507b2c3163b (patch)
tree1aca1c939452c8a4968d20bd91b43c26c2d8ed44
parentf25eec465c2ca3b538a594cea32aa18336c3ae16 (diff)
downloadxfwm4-6b00f9822033727ba5d173ab12beb507b2c3163b.tar.gz
Fix regression introduced by the wrong flag test in the fix for bug #6543
-rw-r--r--src/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.c b/src/client.c
index e16c54e24..0231c1f4e 100644
--- a/src/client.c
+++ b/src/client.c
@@ -3220,7 +3220,7 @@ clientNewMaxSize (Client * c, XWindowChanges *wc)
{
/* Adjust size to the largest size available, not covering struts */
clientMaxSpace (screen_info, &full_x, &full_y, &full_w, &full_h);
- if(FLAG_TEST(c->flags, XFWM_FLAG_HAS_BORDER))
+ if(FLAG_TEST(c->xfwm_flags, XFWM_FLAG_HAS_BORDER))
{
wc->x = full_x + frameLeft (c);
wc->y = full_y + frameTop (c);