diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-08-07 15:47:56 +0200 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-11-03 16:57:11 +0100 |
| commit | 9e0db8f4ffa7d979ffb07cd9d76aee885c261196 (patch) | |
| tree | cd8846ccc546cb6328de47695411d89f679df79b /components/ProcessingSplash.qml | |
| parent | 66bb3fe7ac2b4e890ae7b89931f537bbfea1dd46 (diff) | |
| download | monzero-gui-9e0db8f4ffa7d979ffb07cd9d76aee885c261196.tar.gz monzero-gui-9e0db8f4ffa7d979ffb07cd9d76aee885c261196.tar.xz monzero-gui-9e0db8f4ffa7d979ffb07cd9d76aee885c261196.zip | |
components mobile scaling
Diffstat (limited to 'components/ProcessingSplash.qml')
| -rw-r--r-- | components/ProcessingSplash.qml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/ProcessingSplash.qml b/components/ProcessingSplash.qml index 2f6725db..17091204 100644 --- a/components/ProcessingSplash.qml +++ b/components/ProcessingSplash.qml @@ -38,8 +38,8 @@ Window { property alias messageText: messageTitle.text property alias heightProgressText : heightProgress.text - width: 200 - height: 100 + width: 200 * scaleRatio + height: 100 * scaleRatio opacity: 0.7 ColumnLayout { @@ -49,8 +49,8 @@ Window { anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter - anchors.leftMargin: 30 - anchors.rightMargin: 30 + anchors.leftMargin: 30 * scaleRatio + anchors.rightMargin: 30 * scaleRatio BusyIndicator { running: parent.visible @@ -61,7 +61,7 @@ Window { id: messageTitle text: "Please wait..." font { - pixelSize: 22 + pixelSize: 22 * scaleRatio } horizontalAlignment: Text.AlignHCenter Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter @@ -72,7 +72,7 @@ Window { Text { id: heightProgress font { - pixelSize: 18 + pixelSize: 18 * scaleRatio } horizontalAlignment: Text.AlignHCenter Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter |
