diff options
Diffstat (limited to 'app/qml/cover')
| -rw-r--r-- | app/qml/cover/CoverPage.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/qml/cover/CoverPage.qml b/app/qml/cover/CoverPage.qml index 06340aa..8b9942a 100644 --- a/app/qml/cover/CoverPage.qml +++ b/app/qml/cover/CoverPage.qml @@ -36,12 +36,12 @@ CoverBackground { Label { id: label anchors.centerIn: parent - text: "Pebble" + text: watchPage.name ? watchPage.name : "Pebble" } Label { anchors.top: label.bottom anchors.horizontalCenter: parent.horizontalCenter - text: watchPage.watchConnector.name font.pointSize: Theme.fontSizeSmall + text: watchPage.connected ? "connected" : "disconnected" } } |
