diff options
Diffstat (limited to 'app/qml/cover')
| -rw-r--r-- | app/qml/cover/CoverPage.qml | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/app/qml/cover/CoverPage.qml b/app/qml/cover/CoverPage.qml index 8b9942a..7822b5c 100644 --- a/app/qml/cover/CoverPage.qml +++ b/app/qml/cover/CoverPage.qml @@ -36,12 +36,25 @@ CoverBackground { Label { id: label anchors.centerIn: parent - text: watchPage.name ? watchPage.name : "Pebble" + font.pointSize: Theme.fontSizeLarge + text: pebbled.name ? pebbled.name : "Pebble" } Label { anchors.top: label.bottom anchors.horizontalCenter: parent.horizontalCenter font.pointSize: Theme.fontSizeSmall - text: watchPage.connected ? "connected" : "disconnected" + text: pebbled.connected ? qsTr("connected") : qsTr("disconnected") + } + + CoverActionList { + id: coverAction + + CoverAction { + iconSource: pebbled.connected ? "image://theme/icon-cover-transfers" : "image://theme/icon-cover-sync" + onTriggered: { + // FIXME: implement + console.log('reconnect'); + } + } } } |
