aboutsummaryrefslogtreecommitdiff
path: root/components/PasswordDialog.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2018-03-24 20:48:19 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-29 23:04:04 +0100
commitc001e312410efe8f883bb5163e5554d84126c034 (patch)
treeac37a3679b9e15f2b558ea2438d60c1caf759b41 /components/PasswordDialog.qml
parent3f9926487d37e5338ac6490fc81fdcf35caa708d (diff)
downloadmonzero-gui-c001e312410efe8f883bb5163e5554d84126c034.tar.gz
monzero-gui-c001e312410efe8f883bb5163e5554d84126c034.tar.xz
monzero-gui-c001e312410efe8f883bb5163e5554d84126c034.zip
Fixes runtime QML warning
Diffstat (limited to 'components/PasswordDialog.qml')
-rw-r--r--components/PasswordDialog.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml
index b313874a..dabf233a 100644
--- a/components/PasswordDialog.qml
+++ b/components/PasswordDialog.qml
@@ -85,7 +85,7 @@ Item {
Layout.fillWidth: true
font.pixelSize: 16 * scaleRatio
- font.family: Style.fontLight
+ font.family: Style.fontLight.name
color: Style.defaultFontColor
}
@@ -97,7 +97,7 @@ Item {
anchors.left: parent.left
horizontalAlignment: TextInput.AlignLeft
verticalAlignment: TextInput.AlignVCenter
- font.family: Style.fontLight
+ font.family: Style.fontLight.name
font.pixelSize: 24 * scaleRatio
echoMode: TextInput.Password
KeyNavigation.tab: okButton