mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 03:59:38 +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"
|
||||
color: MoneroComponents.Style.defaultFontColor
|
||||
opacity: 0.5
|
||||
fontAwesomeFallbackIcon: FontAwesome.arrowRight
|
||||
fontAwesomeFallbackSize: 22
|
||||
fontAwesomeFallbackOpacity: 0.5
|
||||
Layout.preferredWidth: 20
|
||||
Layout.preferredHeight: 20
|
||||
tooltip: qsTr("Send to this address") + translationManager.emptyString
|
||||
|
||||
onClicked: {
|
||||
doSend();
|
||||
}
|
||||
|
@ -223,6 +227,9 @@ Rectangle {
|
|||
image: "qrc:///images/edit.svg"
|
||||
color: MoneroComponents.Style.defaultFontColor
|
||||
opacity: 0.5
|
||||
fontAwesomeFallbackIcon: FontAwesome.edit
|
||||
fontAwesomeFallbackSize: 22
|
||||
fontAwesomeFallbackOpacity: 0.5
|
||||
Layout.preferredWidth: 23
|
||||
Layout.preferredHeight: 21
|
||||
tooltip: qsTr("Edit address label") + translationManager.emptyString
|
||||
|
@ -236,10 +243,13 @@ Rectangle {
|
|||
MoneroComponents.IconButton {
|
||||
id: copyButton
|
||||
image: "qrc:///images/copy.svg"
|
||||
Layout.preferredWidth: 16
|
||||
Layout.preferredHeight: 21
|
||||
color: MoneroComponents.Style.defaultFontColor
|
||||
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
|
||||
|
||||
onClicked: {
|
||||
|
|
Loading…
Reference in a new issue