diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-30 11:52:57 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-30 11:52:57 +0700 |
commit | 254f45e1b1e634998ba4ad346708132d3c075946 (patch) | |
tree | 2358b2da4365deeac06a46cf07be927d36d0c898 | |
parent | 583323be56520c697bbc9d08e6abf8ec4b5c42c3 (diff) |
add separator
-rw-r--r-- | TicketDetails.qml | 26 |
1 files 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} } +##^##*/ |