mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
wizard: replace icon with Font Awesome version
This commit is contained in:
parent
fd230789e9
commit
f9dec6e882
1 changed files with 17 additions and 12 deletions
|
@ -29,6 +29,7 @@
|
||||||
import QtQuick 2.9
|
import QtQuick 2.9
|
||||||
import QtQuick.Layouts 1.2
|
import QtQuick.Layouts 1.2
|
||||||
import QtQuick.Controls 2.0
|
import QtQuick.Controls 2.0
|
||||||
|
import FontAwesome 1.0
|
||||||
|
|
||||||
import "../js/Wizard.js" as Wizard
|
import "../js/Wizard.js" as Wizard
|
||||||
import "../components" as MoneroComponents
|
import "../components" as MoneroComponents
|
||||||
|
@ -189,13 +190,15 @@ ColumnLayout {
|
||||||
border.width: 1
|
border.width: 1
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
|
|
||||||
Image {
|
MoneroComponents.Label {
|
||||||
width: 12 * scaleRatio
|
fontSize: 20
|
||||||
height: 16 * scaleRatio
|
text: FontAwesome.lock
|
||||||
source: "qrc:///images/lockIcon.png"
|
opacity: 0.5
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
fontFamily: FontAwesome.fontFamily
|
||||||
anchors.right: parent.right
|
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
|
border.width: 1
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
|
|
||||||
Image {
|
MoneroComponents.Label {
|
||||||
width: 12
|
fontSize: 20
|
||||||
height: 16
|
text: FontAwesome.lock
|
||||||
source: "qrc:///images/lockIcon.png"
|
opacity: 0.5
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
fontFamily: FontAwesome.fontFamily
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
anchors.rightMargin: 20
|
anchors.rightMargin: 15
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
anchors.verticalCenterOffset: 3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue