mirror of
https://github.com/HenkKalkwater/sddm-nx
synced 2024-11-16 08:25:18 +00:00
10 lines
199 B
QML
10 lines
199 B
QML
import QtQuick 2.6
|
|
import QtQuick.VirtualKeyboard 2.4
|
|
|
|
InputPanel {
|
|
id: virtualKeyboard
|
|
property bool activated: false
|
|
active: Qt.inputMethod.visible && activated
|
|
//visible: active
|
|
}
|