1
0

qml: add help_text to GenericShareDialog

This commit is contained in:
Sander van Grieken
2022-08-24 10:15:03 +02:00
parent 1e375ae9e1
commit bb8af0cd08

View File

@@ -11,6 +11,7 @@ ElDialog {
property string text property string text
property string text_qr property string text_qr
// if text_qr is undefined text will be used // if text_qr is undefined text will be used
property string text_help
title: '' title: ''
parent: Overlay.overlay parent: Overlay.overlay
@@ -76,9 +77,18 @@ ElDialog {
wrapMode: Text.Wrap wrapMode: Text.Wrap
font.pixelSize: constants.fontSizeLarge font.pixelSize: constants.fontSizeLarge
font.family: FixedFont font.family: FixedFont
maximumLineCount: 4
elide: Text.ElideRight
} }
} }
Label {
visible: dialog.text_help
text: dialog.text_help
wrapMode: Text.Wrap
Layout.fillWidth: true
}
RowLayout { RowLayout {
Layout.fillWidth: true Layout.fillWidth: true
Layout.alignment: Qt.AlignHCenter Layout.alignment: Qt.AlignHCenter