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 /LeftPanel.qml | |
| parent | e1c429110f5f2321ad0113a8097eab966d935dcd (diff) | |
| download | monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.tar.gz monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.tar.xz monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.zip | |
Remove scaleRatio
Diffstat (limited to 'LeftPanel.qml')
| -rw-r--r-- | LeftPanel.qml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 6cb6059e..d6590cae 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -120,8 +120,8 @@ Rectangle { anchors.topMargin: 20 anchors.leftMargin: 20 anchors.verticalCenter: parent.verticalCenter - height: 490 * scaleRatio - width: 260 * scaleRatio + height: 490 + width: 260 Image { id: card @@ -173,8 +173,8 @@ Rectangle { } Rectangle { - height: (logoutImage.height + 8) * scaleRatio - width: (logoutImage.width + 8) * scaleRatio + height: (logoutImage.height + 8) + width: (logoutImage.width + 8) color: "transparent" anchors.right: parent.right anchors.rightMargin: 8 @@ -185,8 +185,8 @@ Rectangle { id: logoutImage anchors.verticalCenter: parent.verticalCenter anchors.horizontalCenter: parent.horizontalCenter - height: 16 * scaleRatio - width: 13 * scaleRatio + height: 16 + width: 13 source: "qrc:///images/logout.png" } @@ -210,8 +210,8 @@ Rectangle { anchors.topMargin: 20 anchors.leftMargin: 20 anchors.verticalCenter: parent.verticalCenter - height: 490 * scaleRatio - width: 50 * scaleRatio + height: 490 + width: 50 MoneroComponents.TextPlain { visible: !isMobile @@ -672,7 +672,7 @@ Rectangle { anchors.leftMargin: 0 anchors.rightMargin: 0 anchors.bottom: networkStatus.top; - height: 10 * scaleRatio + height: 10 color: "transparent" } @@ -680,11 +680,11 @@ Rectangle { id: networkStatus anchors.left: parent.left anchors.right: parent.right - anchors.leftMargin: 5 * scaleRatio + anchors.leftMargin: 5 anchors.rightMargin: 0 anchors.bottom: (progressBar.visible)? progressBar.top : parent.bottom; connected: Wallet.ConnectionStatus_Disconnected - height: 48 * scaleRatio + height: 48 } MoneroComponents.ProgressBar { @@ -692,7 +692,7 @@ Rectangle { anchors.left: parent.left anchors.right: parent.right anchors.bottom: daemonProgressBar.top - height: 48 * scaleRatio + height: 48 syncType: qsTr("Wallet") + translationManager.emptyString visible: networkStatus.connected } @@ -704,7 +704,7 @@ Rectangle { anchors.bottom: parent.bottom syncType: qsTr("Daemon") + translationManager.emptyString visible: networkStatus.connected - height: 62 * scaleRatio + height: 62 } } } |
