From 254f45e1b1e634998ba4ad346708132d3c075946 Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Mon, 30 Sep 2019 11:52:57 +0700 Subject: add separator --- TicketDetails.qml | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/TicketDetails.qml b/TicketDetails.qml index add934f..13f7346 100644 --- a/TicketDetails.qml +++ b/TicketDetails.qml @@ -22,14 +22,32 @@ TaskDetailForm { anchors.leftMargin: 0 ticketSubject.text: subject } + Label { + id: separator + color: "#000000" + text: qsTr("Activities") + font.weight: Font.Medium + font.pixelSize: 16 + font.family: "Work Sans" + anchors.left: parent.left + anchors.leftMargin: 16 + anchors.top: ticketBriefForm.bottom + anchors.topMargin: 16 + } TaskHistoryForm { anchors.right: parent.right anchors.rightMargin: 0 anchors.left: parent.left anchors.leftMargin: 0 - anchors.top: ticketBriefForm.bottom - anchors.topMargin: 0 - } - } + anchors.top: separator.bottom + anchors.topMargin: 16 + } + } +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} } +##^##*/ -- cgit v1.2.3