mirror of
https://github.com/folfcoder/plasma-sharkle.git
synced 2025-04-04 21:21:38 +00:00
22 lines
No EOL
474 B
QML
22 lines
No EOL
474 B
QML
// configGeneral.qml
|
|
import QtQuick 2.0
|
|
import QtQuick.Controls 2.0
|
|
import QtQuick.Layouts 1.1
|
|
import org.kde.kirigami 2.5 as Kirigami
|
|
|
|
Item {
|
|
id: page
|
|
property alias cfg_sharkleColor: sharkleColor.currentText
|
|
|
|
|
|
Kirigami.FormLayout {
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
|
|
ComboBox {
|
|
id: sharkleColor
|
|
Kirigami.FormData.label: "Sharkle Color:"
|
|
model: ["Black", "White"]
|
|
}
|
|
}
|
|
} |