16 lines
545 B
QML
16 lines
545 B
QML
// SDDM Sugar Candy is free software: you can redistribute it and/or modify it
|
|
// under the terms of the GNU General Public License as published by the
|
|
// Free Software Foundation, either version 3 of the License, or any later version.
|
|
// Config created by https://github.com/MarianArlt
|
|
// Config modified by keyitdev https://github.com/keyitdev
|
|
|
|
import QtQuick 2.11
|
|
import QtQuick.VirtualKeyboard 2.3
|
|
|
|
InputPanel {
|
|
id: virtualKeyboard
|
|
property bool activated: false
|
|
active: activated && Qt.inputMethod.visible
|
|
visible: active
|
|
}
|