[mutter/wayland] wayland: Set the clutter stage focus when we focus a window



commit 20e92c5a72aac65b0ca9a36a310169088babe9aa
Author: Rui Matos <tiagomatos gmail com>
Date:   Mon Nov 25 17:44:07 2013 +0100

    wayland: Set the clutter stage focus when we focus a window
    
    Otherwise clutter events don't have their source actor properly set
    and we aren't able to determine the MetaWindow to which a given
    keybinding applies.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=719724

 src/wayland/meta-wayland.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/src/wayland/meta-wayland.c b/src/wayland/meta-wayland.c
index 061aa0e..3d1961a 100644
--- a/src/wayland/meta-wayland.c
+++ b/src/wayland/meta-wayland.c
@@ -210,10 +210,13 @@ meta_wayland_compositor_set_input_focus (MetaWaylandCompositor *compositor,
                                          MetaWindow            *window)
 {
   MetaWaylandSurface *surface = window ? window->surface : NULL;
+  ClutterActor *window_actor = window ? CLUTTER_ACTOR (meta_window_get_compositor_private (window)) : NULL;
 
   meta_wayland_keyboard_set_focus (&compositor->seat->keyboard,
                                    surface);
   meta_wayland_data_device_set_keyboard_focus (compositor->seat);
+
+  clutter_stage_set_key_focus (CLUTTER_STAGE (compositor->stage), window_actor);
 }
 
 void


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