mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 21:04:32 +00:00
AddressBook: add Font Awesome fallback icons
This commit is contained in:
parent
2946127ed7
commit
aca6174ef4
1 changed files with 12 additions and 2 deletions
|
@ -210,9 +210,13 @@ Rectangle {
|
||||||
image: "qrc:///images/arrow-right-in-circle-outline-medium-white.svg"
|
image: "qrc:///images/arrow-right-in-circle-outline-medium-white.svg"
|
||||||
color: MoneroComponents.Style.defaultFontColor
|
color: MoneroComponents.Style.defaultFontColor
|
||||||
opacity: 0.5
|
opacity: 0.5
|
||||||
|
fontAwesomeFallbackIcon: FontAwesome.arrowRight
|
||||||
|
fontAwesomeFallbackSize: 22
|
||||||
|
fontAwesomeFallbackOpacity: 0.5
|
||||||
Layout.preferredWidth: 20
|
Layout.preferredWidth: 20
|
||||||
Layout.preferredHeight: 20
|
Layout.preferredHeight: 20
|
||||||
tooltip: qsTr("Send to this address") + translationManager.emptyString
|
tooltip: qsTr("Send to this address") + translationManager.emptyString
|
||||||
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
doSend();
|
doSend();
|
||||||
}
|
}
|
||||||
|
@ -223,6 +227,9 @@ Rectangle {
|
||||||
image: "qrc:///images/edit.svg"
|
image: "qrc:///images/edit.svg"
|
||||||
color: MoneroComponents.Style.defaultFontColor
|
color: MoneroComponents.Style.defaultFontColor
|
||||||
opacity: 0.5
|
opacity: 0.5
|
||||||
|
fontAwesomeFallbackIcon: FontAwesome.edit
|
||||||
|
fontAwesomeFallbackSize: 22
|
||||||
|
fontAwesomeFallbackOpacity: 0.5
|
||||||
Layout.preferredWidth: 23
|
Layout.preferredWidth: 23
|
||||||
Layout.preferredHeight: 21
|
Layout.preferredHeight: 21
|
||||||
tooltip: qsTr("Edit address label") + translationManager.emptyString
|
tooltip: qsTr("Edit address label") + translationManager.emptyString
|
||||||
|
@ -236,10 +243,13 @@ Rectangle {
|
||||||
MoneroComponents.IconButton {
|
MoneroComponents.IconButton {
|
||||||
id: copyButton
|
id: copyButton
|
||||||
image: "qrc:///images/copy.svg"
|
image: "qrc:///images/copy.svg"
|
||||||
Layout.preferredWidth: 16
|
|
||||||
Layout.preferredHeight: 21
|
|
||||||
color: MoneroComponents.Style.defaultFontColor
|
color: MoneroComponents.Style.defaultFontColor
|
||||||
opacity: 0.5
|
opacity: 0.5
|
||||||
|
fontAwesomeFallbackIcon: FontAwesome.clipboard
|
||||||
|
fontAwesomeFallbackSize: 22
|
||||||
|
fontAwesomeFallbackOpacity: 0.5
|
||||||
|
Layout.preferredWidth: 16
|
||||||
|
Layout.preferredHeight: 21
|
||||||
tooltip: qsTr("Copy address to clipboard") + translationManager.emptyString
|
tooltip: qsTr("Copy address to clipboard") + translationManager.emptyString
|
||||||
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
|
|
Loading…
Reference in a new issue