diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-07-27 15:22:42 -0600 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-07-27 15:22:42 -0600 |
commit | 78c50e5d8dc2b3b06318dd9e6cb9bf36e3343f8b (patch) | |
tree | 794fdcdd53eaf9a32a0e45320c7c8a3a75d3283a /framework/qml/MailViewer.qml | |
parent | 7c2f37154943aa285a12603e3f8e7297df640f86 (diff) | |
download | kube-78c50e5d8dc2b3b06318dd9e6cb9bf36e3343f8b.tar.gz kube-78c50e5d8dc2b3b06318dd9e6cb9bf36e3343f8b.zip |
Mail debugview improvements
Diffstat (limited to 'framework/qml/MailViewer.qml')
-rw-r--r-- | framework/qml/MailViewer.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/framework/qml/MailViewer.qml b/framework/qml/MailViewer.qml index 42c5080c..4c4e1702 100644 --- a/framework/qml/MailViewer.qml +++ b/framework/qml/MailViewer.qml | |||
@@ -400,6 +400,7 @@ Rectangle { | |||
400 | Flickable { | 400 | Flickable { |
401 | id: flickable | 401 | id: flickable |
402 | anchors.fill: parent | 402 | anchors.fill: parent |
403 | ScrollBar.vertical: ScrollBar {} | ||
403 | contentHeight: content.height | 404 | contentHeight: content.height |
404 | contentWidth: parent.width | 405 | contentWidth: parent.width |
405 | Column { | 406 | Column { |
@@ -445,10 +446,11 @@ Rectangle { | |||
445 | itemDelegate: Item { | 446 | itemDelegate: Item { |
446 | property variant currentData: styleData.value | 447 | property variant currentData: styleData.value |
447 | Text { | 448 | Text { |
448 | anchors.verticalCenter: parent.verticalCenter | 449 | anchors.fill: parent |
449 | color: styleData.textColor | 450 | color: styleData.textColor |
450 | elide: styleData.elideMode | 451 | elide: Text.ElideRight |
451 | text: styleData.value ? styleData.value : "" | 452 | text: styleData.value ? styleData.value : "" |
453 | textFormat: Text.PlainText | ||
452 | } | 454 | } |
453 | MouseArea { | 455 | MouseArea { |
454 | anchors.fill: parent | 456 | anchors.fill: parent |