[mutter/wip/carlosg/x11less-preparations: 71/87] core: Do not synchronize stack with Xserver if there is no X11 Display



commit d86e8d08ac5ffc8d9acedf291f8e5cd051cf2747
Author: Carlos Garnacho <carlosg gnome org>
Date:   Sun Dec 30 13:12:42 2018 +0100

    core: Do not synchronize stack with Xserver if there is no X11 Display
    
    We were assuming there is always a MetaX11Display, this step can simply be
    ignored if there not one.
    
    https://gitlab.gnome.org/GNOME/mutter/merge_requests/420

 src/core/stack.c | 3 +++
 1 file changed, 3 insertions(+)
---
diff --git a/src/core/stack.c b/src/core/stack.c
index 7ab590c98..4535d8502 100644
--- a/src/core/stack.c
+++ b/src/core/stack.c
@@ -1009,6 +1009,9 @@ stack_sync_to_xserver (MetaStack *stack)
   GList *tmp;
   GArray *hidden_stack_ids;
 
+  if (!stack->display->x11_display)
+    return;
+
   /* Bail out if frozen */
   if (stack->freeze_count > 0)
     return;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]