15 lines
454 B
QML
15 lines
454 B
QML
|
// Config created by Keyitdev https://github.com/Keyitdev/sddm-astronaut-theme
|
||
|
// Copyright (C) 2022-2024 Keyitdev
|
||
|
// Based on https://github.com/MarianArlt/sddm-sugar-dark
|
||
|
// Distributed under the GPLv3+ License https://www.gnu.org/licenses/gpl-3.0.html
|
||
|
|
||
|
import QtQuick 2.15
|
||
|
import QtQuick.VirtualKeyboard 2.3
|
||
|
|
||
|
InputPanel {
|
||
|
id: virtualKeyboard
|
||
|
property bool activated: false
|
||
|
active: activated && Qt.inputMethod.visible
|
||
|
visible: active
|
||
|
}
|