[Xfce4-commits] [xfce/xfwm4] 01/02: Revert "events: ignore client configure requests when maxized"

noreply at xfce.org noreply at xfce.org
Mon Jun 24 19:11:28 CEST 2019


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

o   l   i   v   i   e   r       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository xfce/xfwm4.

commit d8435e5e462f8e1acd2d7a5d085dab9b851ebe8f
Author: Olivier Fourdan <fourdan at xfce.org>
Date:   Mon Jun 24 18:45:42 2019 +0200

    Revert "events: ignore client configure requests when maxized"
    
    Bug: 15638
    
    Ignoring all configure requests when maximized or fullscreen is overkill
    and prevent valid use cases from working.
    
    This reverts commit 3751c2c716714f84dd3d527b60f3543e96fac54e.
---
 src/events.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/src/events.c b/src/events.c
index 9b78bd0..91d7b17 100644
--- a/src/events.c
+++ b/src/events.c
@@ -1365,14 +1365,10 @@ handleConfigureRequest (DisplayInfo *display_info, XConfigureRequestEvent * ev)
             ev->value_mask &= ~(CWSibling | CWStackMode);
         }
     }
-
     if (c)
     {
         TRACE ("window \"%s\" (0x%lx)", c->name, c->window);
-        if (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_MOVING_RESIZING)
-            || FLAG_TEST (c->flags, CLIENT_FLAG_FULLSCREEN)
-            || (FLAG_TEST_ALL (c->flags, CLIENT_FLAG_MAXIMIZED)
-                && (c->screen_info->params->borderless_maximize)))
+        if (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_MOVING_RESIZING))
         {
             /* Sorry, but it's not the right time for configure request */
             return EVENT_FILTER_REMOVE;

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


More information about the Xfce4-commits mailing list