summaryrefslogtreecommitdiffstats
path: root/components/mailviewer/TextPart.qml
blob: 3a4c8d22a682ce49c6742b7e2c53228e3ff17456 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.4

Text  {
    width: delegateRoot.width

    text: model.textContent
    wrapMode: Text.WordWrap

    color: embeded ? "grey" : "black"
}