diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-10-03 16:42:26 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-10-03 16:42:26 +0700 |
commit | 28e9d9e77320ff92f0ce7e5705311296e8e99107 (patch) | |
tree | b04fdee1e2b1212917810a4e5bc2ac21e25746e6 /features/TaskDetailForm.ui.qml | |
parent | a98f8eba7ef3139899967c4d2a0afe5d42ffd2bc (diff) |
rework on `TaskHistoryForm`
Diffstat (limited to 'features/TaskDetailForm.ui.qml')
-rw-r--r-- | features/TaskDetailForm.ui.qml | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/features/TaskDetailForm.ui.qml b/features/TaskDetailForm.ui.qml index 175432a..e032321 100644 --- a/features/TaskDetailForm.ui.qml +++ b/features/TaskDetailForm.ui.qml @@ -6,10 +6,13 @@ import QtQuick.Layouts 1.12 Page { id: page title: qsTr("Task detail page") + background: Rectangle { + color: "#FFFFFF" + } property alias backButton: backButton - property alias listView: listView property alias ticketBriefForm: ticketBriefForm + property alias listView: listView header: ToolBar { background: Rectangle { @@ -36,10 +39,12 @@ Page { } ScrollView { id: contentView - anchors.fill: parent - background: Rectangle { - color: "#FFFFFF" - } + anchors.right: parent.right + anchors.rightMargin: 0 + anchors.left: parent.left + anchors.leftMargin: 0 + anchors.top: parent.top + anchors.topMargin: 0 TaskBriefForm { id: ticketBriefForm anchors.top: parent.top @@ -72,18 +77,14 @@ Page { } ListView { id: listView + keyNavigationWraps: true + interactive: true 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 - } - spacing: 0 } } } |