From 93b3626a37cafa8f109f2f90306eee51f61cdd74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Thu, 26 Mar 2015 16:17:51 +0100 Subject: [PATCH] [libinput] Try to dispatch events directly after setup Without we might end in a race as kwin_wayland might start the Xwayland server before we have a populated seat interface. --- libinput/connection.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libinput/connection.cpp b/libinput/connection.cpp index 004c9ce333..82250bc8a8 100644 --- a/libinput/connection.cpp +++ b/libinput/connection.cpp @@ -97,6 +97,7 @@ void Connection::setup() active ? m_input->resume() : m_input->suspend(); } ); + handleEvent(); } void Connection::handleEvent()