summaryrefslogtreecommitdiff
path: root/app/qml/pages/WatchPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'app/qml/pages/WatchPage.qml')
-rw-r--r--app/qml/pages/WatchPage.qml18
1 files changed, 10 insertions, 8 deletions
diff --git a/app/qml/pages/WatchPage.qml b/app/qml/pages/WatchPage.qml
index b36280f..7d4375c 100644
--- a/app/qml/pages/WatchPage.qml
+++ b/app/qml/pages/WatchPage.qml
@@ -60,19 +60,21 @@ Page {
Button {
+ text: qsTr("Info")
+ width: parent.width / 3
+ onClicked: pageStack.push(Qt.resolvedUrl("WatchInfo.qml"))
+ }
+
+ Button {
text: qsTr("Ping")
- width: parent.width / 2
- onClicked: {
- pebbled.ping(66)
- }
+ width: parent.width / 3
+ onClicked: pebbled.ping(66)
}
Button {
text: qsTr("Sync Time")
- width: parent.width / 2
- onClicked: {
- pebbled.time()
- }
+ width: parent.width / 3
+ onClicked: pebbled.time()
}
}