From 81a13a3757fe27e421e76a207655a76e545e4b3d Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Fri, 3 Aug 2012 14:39:10 +0300 Subject: [PATCH] compositor-drm: log enter/leave VT All input devices are re-added during enter VT, so these messages in the log will clarify what happened with input. Signed-off-by: Pekka Paalanen --- src/compositor-drm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/compositor-drm.c b/src/compositor-drm.c index c12bc01d..eab5f5c2 100644 --- a/src/compositor-drm.c +++ b/src/compositor-drm.c @@ -2100,6 +2100,7 @@ vt_func(struct weston_compositor *compositor, int event) switch (event) { case TTY_ENTER_VT: + weston_log("entering VT\n"); compositor->focus = 1; if (weston_launcher_drm_set_master(&ec->base, ec->drm.fd, 1)) { weston_log("failed to set master: %m\n"); @@ -2114,6 +2115,7 @@ vt_func(struct weston_compositor *compositor, int event) } break; case TTY_LEAVE_VT: + weston_log("leaving VT\n"); wl_list_for_each(seat, &compositor->seat_list, link) { evdev_disable_udev_monitor(seat); evdev_remove_devices(seat);