[Xfce4-commits] <xfwm4:master> Fix regression introduced by the wrong flag test in the fix for bug #6543

Olivier Fourdan noreply at xfce.org
Fri Dec 3 14:10:01 CET 2010


Updating branch refs/heads/master
         to 6b00f9822033727ba5d173ab12beb507b2c3163b (commit)
       from f25eec465c2ca3b538a594cea32aa18336c3ae16 (commit)

commit 6b00f9822033727ba5d173ab12beb507b2c3163b
Author: Olivier Fourdan <fourdan at xfce.org>
Date:   Fri Dec 3 14:08:03 2010 +0100

    Fix regression introduced by the wrong flag test in the fix for bug #6543

 src/client.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/client.c b/src/client.c
index e16c54e..0231c1f 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);



More information about the Xfce4-commits mailing list