linphone-desktop/tests/ui/components/dialog/DialogDescription.qml
2016-09-14 14:10:55 +02:00

21 lines
520 B
QML

import QtQuick 2.7
// ===================================================================
// Description content used by dialogs.
// ===================================================================
Item {
property alias text: description.text
height: text ? 90 : 25
Text {
anchors.fill: parent
anchors.leftMargin: 50
anchors.rightMargin: 50
font.pointSize: 12
id: description
verticalAlignment: Text.AlignVCenter
wrapMode: Text.WordWrap
}
}