diff options
-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 |