[Xfce4-commits] <xfwm4:xfce-4.8> Relax resize wrt to size increments

Olivier Fourdan noreply at xfce.org
Mon Apr 11 09:42:02 CEST 2011


Updating branch refs/heads/xfce-4.8
         to bf911e27371e49344297f9c0c1b24b953f3c2b03 (commit)
       from 3d6fe6bba71a24428513ff89472c3318f8061b6b (commit)

commit bf911e27371e49344297f9c0c1b24b953f3c2b03
Author: Olivier Fourdan <fourdan at xfce.org>
Date:   Thu Mar 31 11:51:36 2011 +0200

    Relax resize wrt to size increments

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

diff --git a/src/client.c b/src/client.c
index b21e27f..41a674a 100644
--- a/src/client.c
+++ b/src/client.c
@@ -666,11 +666,11 @@ clientConfigure (Client * c, XWindowChanges * wc, unsigned long mask, unsigned s
     }
     if (mask & CWWidth)
     {
-        clientSetWidth (c, wc->width);
+        c->width = wc->width;
     }
     if (mask & CWHeight)
     {
-        clientSetHeight (c, wc->height);
+        c->height = wc->height;
     }
     if (mask & CWBorderWidth)
     {



More information about the Xfce4-commits mailing list