diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-04-25 13:32:02 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-04-25 13:32:02 -0500 |
| commit | e1c429110f5f2321ad0113a8097eab966d935dcd (patch) | |
| tree | a26985650d7f631e06af03d22f04fe2a776839f3 | |
| parent | fd230789e96dcb871b0aa3adaf697de0e8e324d4 (diff) | |
| parent | f9dec6e882275583ab0c2f08c6408badc3af3e10 (diff) | |
| download | monzero-gui-e1c429110f5f2321ad0113a8097eab966d935dcd.tar.gz monzero-gui-e1c429110f5f2321ad0113a8097eab966d935dcd.tar.xz monzero-gui-e1c429110f5f2321ad0113a8097eab966d935dcd.zip | |
Merge pull request #2096
f9dec6e wizard: replace icon with Font Awesome version (selsta)
| -rw-r--r-- | wizard/WizardAskPassword.qml | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/wizard/WizardAskPassword.qml b/wizard/WizardAskPassword.qml index 0b73ac7a..c69fcd18 100644 --- a/wizard/WizardAskPassword.qml +++ b/wizard/WizardAskPassword.qml @@ -29,6 +29,7 @@ import QtQuick 2.9 import QtQuick.Layouts 1.2 import QtQuick.Controls 2.0 +import FontAwesome 1.0 import "../js/Wizard.js" as Wizard import "../components" as MoneroComponents @@ -189,13 +190,15 @@ ColumnLayout { border.width: 1 color: "transparent" - Image { - width: 12 * scaleRatio - height: 16 * scaleRatio - source: "qrc:///images/lockIcon.png" - anchors.verticalCenter: parent.verticalCenter + MoneroComponents.Label { + fontSize: 20 + text: FontAwesome.lock + opacity: 0.5 + fontFamily: FontAwesome.fontFamily anchors.right: parent.right - anchors.rightMargin: 20 + anchors.rightMargin: 15 + anchors.verticalCenter: parent.verticalCenter + anchors.verticalCenterOffset: 3 } } } @@ -244,13 +247,15 @@ ColumnLayout { border.width: 1 color: "transparent" - Image { - width: 12 - height: 16 - source: "qrc:///images/lockIcon.png" - anchors.verticalCenter: parent.verticalCenter + MoneroComponents.Label { + fontSize: 20 + text: FontAwesome.lock + opacity: 0.5 + fontFamily: FontAwesome.fontFamily anchors.right: parent.right - anchors.rightMargin: 20 + anchors.rightMargin: 15 + anchors.verticalCenter: parent.verticalCenter + anchors.verticalCenterOffset: 3 } } } |
