From 6b7cd7a20d1c62c491ac22bbfa6c8405f0427317 Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Wed, 5 May 2021 16:21:57 +0200 Subject: [PATCH] sddm-theme: Use the wayland keyboard on Wayland When using sddm on wayland (still to be completed) use the wayland-specific keyboard component. --- sddm-theme/Main.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sddm-theme/Main.qml b/sddm-theme/Main.qml index fba683f21..ccbff5d7e 100644 --- a/sddm-theme/Main.qml +++ b/sddm-theme/Main.qml @@ -270,7 +270,8 @@ PlasmaCore.ColorScope { state = "hidden"; } } - source: "components/VirtualKeyboard.qml" + + source: Qt.platform.pluginName.includes("wayland") ? "components/VirtualKeyboard_wayland.qml" : "components/VirtualKeyboard.qml" anchors { left: parent.left right: parent.right