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 /wizard/WizardHeader.qml | |
| parent | e1c429110f5f2321ad0113a8097eab966d935dcd (diff) | |
| download | monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.tar.gz monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.tar.xz monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.zip | |
Remove scaleRatio
Diffstat (limited to 'wizard/WizardHeader.qml')
| -rw-r--r-- | wizard/WizardHeader.qml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/wizard/WizardHeader.qml b/wizard/WizardHeader.qml index 6e984812..43ecbc7e 100644 --- a/wizard/WizardHeader.qml +++ b/wizard/WizardHeader.qml @@ -38,7 +38,7 @@ import QtQuick.Controls 2.0 ColumnLayout { property string title: "" property string subtitle: "" - spacing: 4 * scaleRatio + spacing: 4 Layout.maximumWidth: wizardController.wizardSubViewWidth TextArea { @@ -49,9 +49,9 @@ ColumnLayout { opacity: MoneroComponents.Style.blackTheme ? 1.0 : 0.8 font.pixelSize: { if(wizardController.layoutScale === 2 ){ - return 34 * scaleRatio; + return 34; } else { - return 28 * scaleRatio; + return 28; } } @@ -78,9 +78,9 @@ ColumnLayout { font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: { if(wizardController.layoutScale === 2 ){ - return 16 * scaleRatio; + return 16; } else { - return 14 * scaleRatio; + return 14; } } |
