diff options
| author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-29 20:04:32 +0700 |
|---|---|---|
| committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-29 20:04:32 +0700 |
| commit | 27b2be77d5d7c53a23bfbec57807b2669dc1c163 (patch) | |
| tree | 694703910379cf4cab2335884619beeeb1edf50f /features/TaskDetailForm.ui.qml | |
| parent | ce208d00add8665d99d01038467c473db00b1931 (diff) | |
load `TaskHistoryForm.ui.qml` on `TaskDetailForm`
Diffstat (limited to 'features/TaskDetailForm.ui.qml')
| -rw-r--r-- | features/TaskDetailForm.ui.qml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/features/TaskDetailForm.ui.qml b/features/TaskDetailForm.ui.qml index 8b742ee..9e3c2a1 100644 --- a/features/TaskDetailForm.ui.qml +++ b/features/TaskDetailForm.ui.qml @@ -35,6 +35,7 @@ Page { } } } + StackView { id: contentView anchors.fill: parent @@ -48,12 +49,22 @@ Page { anchors.left: parent.left anchors.leftMargin: 0 } + + TaskHistoryForm { + id: taskHistoryForm + anchors.right: parent.right + anchors.rightMargin: 0 + anchors.left: parent.left + anchors.leftMargin: 0 + anchors.top: taskBriefForm.bottom + anchors.topMargin: 0 + } } } /*##^## Designer { - D{i:0;autoSize:true;height:480;width:640}D{i:8;anchors_x:43;anchors_y:73} + D{i:0;autoSize:true;height:480;width:640}D{i:9;anchors_x:0;anchors_y:183} } ##^##*/ |