summaryrefslogtreecommitdiff
path: root/app/qml/pages/ManagerPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'app/qml/pages/ManagerPage.qml')
-rw-r--r--app/qml/pages/ManagerPage.qml18
1 files changed, 9 insertions, 9 deletions
diff --git a/app/qml/pages/ManagerPage.qml b/app/qml/pages/ManagerPage.qml
index 303c2fa..af247f5 100644
--- a/app/qml/pages/ManagerPage.qml
+++ b/app/qml/pages/ManagerPage.qml
@@ -53,9 +53,12 @@ Page {
}
SilicaFlickable {
+ id: flickable
anchors.fill: parent
contentHeight: column.height
+ VerticalScrollDecorator { flickable: flickable }
+
PullDownMenu {
MenuItem {
text: qsTr("About")
@@ -85,16 +88,13 @@ Page {
}
}
- ListItem {
+ Button {
visible: pebbled.connected
- Label {
- text: pebbled.name
- truncationMode: TruncationMode.Fade
- anchors {
- left: parent.left
- right: parent.right
- margins: Theme.paddingLarge
- }
+ text: pebbled.name
+ anchors {
+ left: parent.left
+ right: parent.right
+ margins: Theme.paddingLarge
}
onClicked: pageStack.push(Qt.resolvedUrl("WatchPage.qml"))
}