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

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


Updating branch refs/heads/master
         to 66711bfa89f4009d09cb0b36e7a7dc829ecec676 (commit)
       from 6232a023d65a8862a41423a2859f9d459f90f488 (commit)

commit 66711bfa89f4009d09cb0b36e7a7dc829ecec676
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