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

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


Updating branch refs/heads/xfce-4.6
         to 936b7cec24567cce04575559bd71ae98beb115d3 (commit)
       from dcaa3fbd6156fced9e829de202eb9aa2ca5abf0b (commit)

commit 936b7cec24567cce04575559bd71ae98beb115d3
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 4839eea..a21f899 100644
--- a/src/client.c
+++ b/src/client.c
@@ -3211,7 +3211,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