diff options
| author | dsc <xmrdsc@protonmail.com> | 2019-04-25 21:09:23 +0200 |
|---|---|---|
| committer | dsc <xmrdsc@protonmail.com> | 2019-04-25 21:09:23 +0200 |
| commit | 62285b01dc77ef14e4b5b9cc291e34162321ad89 (patch) | |
| tree | 5ced9d312817ca03be17c242d1e2bd478b4fd1e5 /components/ProcessingSplash.qml | |
| parent | e1c429110f5f2321ad0113a8097eab966d935dcd (diff) | |
| download | monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.tar.gz monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.tar.xz monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.zip | |
Remove scaleRatio
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 47f441b6..9211fa02 100644 --- a/components/ProcessingSplash.qml +++ b/components/ProcessingSplash.qml @@ -41,8 +41,8 @@ Rectangle { property alias messageText: messageTitle.text property alias heightProgressText : heightProgress.text - width: 200 * scaleRatio - height: 100 * scaleRatio + width: 200 + height: 100 opacity: 0.7 function show() { @@ -60,8 +60,8 @@ Rectangle { anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter - anchors.leftMargin: 30 * scaleRatio - anchors.rightMargin: 30 * scaleRatio + anchors.leftMargin: 30 + anchors.rightMargin: 30 spacing: 12 @@ -74,7 +74,7 @@ Rectangle { id: messageTitle text: "Please wait..." font { - pixelSize: 22 * scaleRatio + pixelSize: 22 } horizontalAlignment: Text.AlignHCenter Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter @@ -87,7 +87,7 @@ Rectangle { MoneroComponents.TextPlain { id: heightProgress font { - pixelSize: 18 * scaleRatio + pixelSize: 18 } horizontalAlignment: Text.AlignHCenter Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter |
