aboutsummaryrefslogtreecommitdiff
path: root/components/InputDialog.qml
diff options
context:
space:
mode:
authordsc <xmrdsc@protonmail.com>2019-04-25 21:09:23 +0200
committerdsc <xmrdsc@protonmail.com>2019-04-25 21:09:23 +0200
commit62285b01dc77ef14e4b5b9cc291e34162321ad89 (patch)
tree5ced9d312817ca03be17c242d1e2bd478b4fd1e5 /components/InputDialog.qml
parente1c429110f5f2321ad0113a8097eab966d935dcd (diff)
downloadmonzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.tar.gz
monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.tar.xz
monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.zip
Remove scaleRatio
Diffstat (limited to 'components/InputDialog.qml')
-rw-r--r--components/InputDialog.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/InputDialog.qml b/components/InputDialog.qml
index 8b3414ed..6401b0ce 100644
--- a/components/InputDialog.qml
+++ b/components/InputDialog.qml
@@ -75,13 +75,13 @@ Item {
Layout.fillWidth: true
Layout.alignment: Qt.AlignHCenter
- Layout.maximumWidth: 400 * scaleRatio
+ Layout.maximumWidth: 400
Label {
id: label
Layout.fillWidth: true
- font.pixelSize: 16 * scaleRatio
+ font.pixelSize: 16
font.family: MoneroComponents.Style.fontLight.name
color: MoneroComponents.Style.defaultFontColor
@@ -95,7 +95,7 @@ Item {
horizontalAlignment: TextInput.AlignLeft
verticalAlignment: TextInput.AlignVCenter
font.family: MoneroComponents.Style.fontLight.name
- font.pixelSize: 24 * scaleRatio
+ font.pixelSize: 24
KeyNavigation.tab: okButton
bottomPadding: 10
leftPadding: 10
@@ -124,7 +124,7 @@ Item {
// Ok/Cancel buttons
RowLayout {
id: buttons
- spacing: 16 * scaleRatio
+ spacing: 16
Layout.topMargin: 16
Layout.alignment: Qt.AlignRight