From 20e92c5a72aac65b0ca9a36a310169088babe9aa Mon Sep 17 00:00:00 2001 From: Rui Matos Date: Mon, 25 Nov 2013 17:44:07 +0100 Subject: [PATCH] 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 file changed, 3 insertions(+) diff --git a/src/wayland/meta-wayland.c b/src/wayland/meta-wayland.c index 061aa0e60..3d1961a81 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