diff options
Diffstat (limited to 'sowatchui/qml')
-rw-r--r-- | sowatchui/qml/WatchPage.qml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sowatchui/qml/WatchPage.qml b/sowatchui/qml/WatchPage.qml index 6ddb7e8..59bb5c4 100644 --- a/sowatchui/qml/WatchPage.qml +++ b/sowatchui/qml/WatchPage.qml @@ -39,6 +39,10 @@ Page { width: parent.width height: UiConstants.ListItemHeightDefault + GConfKey { + id: enableKey + key: configKey + "/enable" + } Label { text: qsTr("Enabled") font: UiConstants.TitleFont @@ -46,9 +50,11 @@ Page { anchors.left: parent.left } Switch { + id: enableSwitch anchors.verticalCenter: parent.verticalCenter anchors.right: parent.right - checked: true + checked: enableKey.value + onCheckedChanged: enableKey.value = checked } } |