mirror of
https://github.com/luneko/SweetTokyoNight.git
synced 2025-12-15 16:09:53 +01:00
11 lines
216 B
QML
11 lines
216 B
QML
import QtQuick 2.5
|
|
import QtQuick.VirtualKeyboard 2.1
|
|
|
|
InputPanel {
|
|
id: inputPanel
|
|
property bool activated: false
|
|
active: activated && Qt.inputMethod.visible
|
|
visible: active
|
|
width: parent.width
|
|
}
|