[mutter/wayland] window-actor: Set as unreactive when hiding



commit 2952d3671d75240d2facd5d3d96a10b8213fb615
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Tue Nov 19 19:34:04 2013 -0500

    window-actor: Set as unreactive when hiding
    
    This means that we should never pick the actor when it's being destroyed.

 src/compositor/meta-window-actor.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/src/compositor/meta-window-actor.c b/src/compositor/meta-window-actor.c
index 8931b5d..4bab98f 100644
--- a/src/compositor/meta-window-actor.c
+++ b/src/compositor/meta-window-actor.c
@@ -1602,6 +1602,7 @@ meta_window_actor_hide (MetaWindowActor *self,
   g_return_if_fail (priv->visible);
 
   priv->visible = FALSE;
+  clutter_actor_set_reactive (CLUTTER_ACTOR (self), FALSE);
 
   /* If a plugin is animating a workspace transition, we have to
    * hold off on hiding the window, and do it after the workspace


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