ref #111 Added left-aligned positioning

This commit is contained in:
IgorekLoschinin 2021-07-20 21:46:10 +03:00
parent 7efc1b2261
commit b7423c5130

View File

@ -31,7 +31,7 @@ Dialog {
text: qsTr("Thanks for your support!")
font.bold: true
font.capitalization: Font.AllUppercase
horizontalAlignment: Text.AlignHCenter
horizontalAlignment: Text.AlignLeft
Layout.fillWidth: true
}
@ -54,7 +54,7 @@ Dialog {
text: qsTr("You are now our premium user and we won't dare bother you with ads anymore.")
font.bold: false
font.capitalization: Font.AllUppercase
horizontalAlignment: Text.AlignHCenter
horizontalAlignment: Text.AlignLeft
wrapMode: Text.WordWrap
Layout.fillWidth: true
}
@ -79,7 +79,7 @@ Dialog {
text: qsTr("Now levels from 1 to 15 are available to you. Enjoy your game!")
font.bold: false
font.capitalization: Font.AllUppercase
horizontalAlignment: Text.AlignHCenter
horizontalAlignment: Text.AlignLeft
wrapMode: Text.WordWrap
Layout.fillWidth: true
}
@ -88,7 +88,7 @@ Dialog {
CheckBox {
id: doNotShowAgain
text: qsTr("Do not show again ")
Layout.alignment: Layout.Center
Layout.alignment: Layout.Left
}
anchors.fill: parent