harbour-seaprint/qml/components/RangeSetting.qml
Anton Thomasson 4526aedcc8 Disable unsupported settings
Make the GUI reflect that even the most basic printer settings may be
unavailable
2020-02-17 19:58:46 +01:00

31 lines
501 B
QML

import QtQuick 2.0
import Sailfish.Silica 1.0
Setting {
//TODO
property int low
property int high
property int choice_low
property int choice_high
ValueButton {
enabled: valid
anchors.verticalCenter: parent.verticalCenter
label: prettyName
value: choice ? choice : default_choice
onClicked: parent.clicked()
}
property var menu: ContextMenu {
id: menu
enabled: valid
MenuItem {
}
}
}