diff options
Diffstat (limited to 'features/TaskDetailForm.ui.qml')
-rw-r--r-- | features/TaskDetailForm.ui.qml | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/features/TaskDetailForm.ui.qml b/features/TaskDetailForm.ui.qml index bff578d..175432a 100644 --- a/features/TaskDetailForm.ui.qml +++ b/features/TaskDetailForm.ui.qml @@ -34,7 +34,7 @@ Page { } } } - StackView { + ScrollView { id: contentView anchors.fill: parent background: Rectangle { @@ -72,22 +72,18 @@ Page { } ListView { id: listView + anchors.right: parent.right + anchors.rightMargin: 0 + anchors.left: parent.left + anchors.leftMargin: 0 + anchors.top: separator.bottom + anchors.topMargin: 0 Rectangle { color: "#eeeeee" z: -1 anchors.fill: parent } - anchors.bottom: parent.bottom - anchors.bottomMargin: 0 - anchors.top: separator.bottom - anchors.topMargin: 0 - anchors.right: parent.right - anchors.rightMargin: 0 - anchors.left: parent.left - anchors.leftMargin: 0 spacing: 0 - - ScrollBar.vertical: ScrollBar {} } } } |