diff options
| author | Tomasz Sterna <tomek@xiaoka.com> | 2014-08-06 01:08:33 +0200 |
|---|---|---|
| committer | Tomasz Sterna <tomek@xiaoka.com> | 2014-08-06 01:08:33 +0200 |
| commit | c1534c22728355e658b275cf3f6ef13e85915676 (patch) | |
| tree | c4899b2f9fada23476e0566a9b0b101679f822f3 /app/qml/pages/ManagerPage.qml | |
| parent | 3d797fa577b640efc524467092ac502e783203f5 (diff) | |
Pages layouts improvements
Diffstat (limited to 'app/qml/pages/ManagerPage.qml')
| -rw-r--r-- | app/qml/pages/ManagerPage.qml | 18 |
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")) } |
