From eef9ee125e35ad8a96b39a2a3d0795a3250a83ae Mon Sep 17 00:00:00 2001 From: Andrey Butirsky Date: Fri, 26 Jun 2020 15:01:04 +0300 Subject: [PATCH] [1/2] fix No input in nested session fix erroneous libinput use: https://bugs.kde.org/show_bug.cgi?id=421486 --- startkde/startplasma-wayland.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startkde/startplasma-wayland.cpp b/startkde/startplasma-wayland.cpp index 03210ce77..6536d7364 100644 --- a/startkde/startplasma-wayland.cpp +++ b/startkde/startplasma-wayland.cpp @@ -90,7 +90,7 @@ int main(int argc, char** argv) args << QString::fromLocal8Bit(argv[i]); } } else { - args = QStringList { QStringLiteral("--xwayland"), QStringLiteral("--libinput"), QStringLiteral("--exit-with-session=" CMAKE_INSTALL_FULL_LIBEXECDIR "/startplasma-waylandsession") }; + args = QStringList { QStringLiteral("--xwayland"), QStringLiteral("--exit-with-session=" CMAKE_INSTALL_FULL_LIBEXECDIR "/startplasma-waylandsession") }; } runSync(QStringLiteral(KWIN_WAYLAND_BIN_PATH), args);