mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
24 lines
686 B
QML
24 lines
686 B
QML
import QtQuick 2.7
|
|
|
|
import 'qrc:/ui/style/components'
|
|
|
|
// ===================================================================
|
|
// Description content used by dialogs.
|
|
// ===================================================================
|
|
|
|
Item {
|
|
property alias text: description.text
|
|
|
|
height: text ? DialogStyle.description.height : DialogStyle.description.minHeight
|
|
|
|
Text {
|
|
id: description
|
|
|
|
anchors.fill: parent
|
|
anchors.leftMargin: DialogStyle.leftMargin
|
|
anchors.rightMargin: DialogStyle.rightMargin
|
|
font.pointSize: DialogStyle.description.fontSize
|
|
verticalAlignment: Text.AlignVCenter
|
|
wrapMode: Text.WordWrap
|
|
}
|
|
}
|