From 035dd9c4de5c14aed63a63c12ebe711bad09264a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Tue, 10 Apr 2012 00:33:40 -0400 Subject: [PATCH] compositor: End keyboard grab when compositor loses keyboard focus --- src/compositor.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/compositor.c b/src/compositor.c index 1bdca11..96296cc 100644 --- a/src/compositor.c +++ b/src/compositor.c @@ -1717,6 +1717,10 @@ notify_keyboard_focus(struct wl_input_device *device, wl_input_device_set_keyboard_focus(&wd->input_device, NULL, time); + /* FIXME: We really need keyboard grab cancel here to + * let the grab shut down properly. As it is we leak + * the grab data. */ + wl_input_device_end_keyboard_grab(&wd->input_device, time); } } -- 2.7.4