mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 03:07:05 +02:00
fixing spacing
This commit is contained in:
parent
b4e2b74f3d
commit
67fe05da97
1 changed files with 2 additions and 2 deletions
|
@ -188,7 +188,7 @@ Item {
|
|||
additionalText.wrapMode = Text.WordWrap;
|
||||
additionalText.verticalAlignment = Text.AlignLeft;
|
||||
additionalText.horizontalAlignment = Text.AlignLeft;
|
||||
additionalTextContainer.height = 3 * additionalTextMetrics.height;
|
||||
additionalTextContainer.height = (additionalTextMetrics.width / root.bannerWidth) * additionalTextMetrics.height;
|
||||
additionalTextContainer.anchors.left = buttons.left;
|
||||
} else {
|
||||
additionalText.anchors.centerIn = additionalTextContainer;
|
||||
|
@ -237,7 +237,7 @@ Item {
|
|||
termsText.wrapMode = Text.WordWrap;
|
||||
additionalText.verticalAlignment = Text.AlignLeft;
|
||||
additionalText.horizontalAlignment = Text.AlignLeft;
|
||||
termsContainer.height = 3 * termsTextMetrics.height;
|
||||
termsContainer.height = (termsTextMetrics.width / root.bannerWidth) * termsTextMetrics.height;
|
||||
termsContainer.anchors.left = buttons.left;
|
||||
} else {
|
||||
termsText.anchors.centerIn = termsContainer;
|
||||
|
|
Loading…
Reference in a new issue