[Xfce4-commits] [xfce/xfwm4] 07/07: Fix wireframe without compositor.

noreply at xfce.org noreply at xfce.org
Tue Aug 25 19:02:12 CEST 2015


This is an automated email from the git hooks/post-receive script.

olivier pushed a commit to branch master
in repository xfce/xfwm4.

commit 111777d63a31bded8f77cf758a920aa528c320fe
Author: Guus Sliepen <guus at debian.org>
Date:   Fri Jun 19 11:56:46 2015 +0200

    Fix wireframe without compositor.
    
    Bug: 11995
    
    In wireframeDrawXlib(), there was a check to not redraw the wireframe
    if it had the same size as the previously drawn wireframe. This check is
    also in wireframeDrawCairo(), but in the Xlib case it prevents correct
    updates of the wireframe when cycling through identically sized windows.
    
    Signed-off-by: Guus Sliepen <guus at debian.org>
---
 src/wireframe.c |    5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/wireframe.c b/src/wireframe.c
index bf272f2..44790e1 100644
--- a/src/wireframe.c
+++ b/src/wireframe.c
@@ -58,11 +58,6 @@ wireframeDrawXlib (WireFrame *wireframe, int width, int height)
     XMoveResizeWindow (myScreenGetXDisplay (screen_info), wireframe->xwindow,
                        wireframe->x, wireframe->y, width, height);
 
-    if ((width == wireframe->width) && (height == wireframe->height))
-    {
-        /* Moving only */
-        return;
-    }
     wireframe->width = width;
     wireframe->height = height;
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list