From 46e3da297ceb5bcaaed9aa8042092a6168f26e02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Tue, 16 Feb 2016 17:14:28 +0100 Subject: [PATCH] Set timestamp on WaylandSeat for key event in LockScreenFilter Was missing. --- input.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/input.cpp b/input.cpp index f7a94d3240..10e83b0d0b 100644 --- a/input.cpp +++ b/input.cpp @@ -173,11 +173,12 @@ public: // continue normal processing input()->keyboard()->update(); + auto seat = waylandServer()->seat(); + seat->setTimestamp(event->timestamp()); if (!keyboardSurfaceAllowed()) { // don't pass event to seat return true; } - auto seat = waylandServer()->seat(); switch (event->type()) { case QEvent::KeyPress: seat->keyPressed(event->nativeScanCode());