diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-04-16 12:55:59 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-04-16 12:55:59 -0500 |
| commit | 0ae643542929a60c76ec4eb9888d8b35cece73d9 (patch) | |
| tree | 399b77358febce4979012c94f066f9b5d230c0ad | |
| parent | c47332e2f1279066e63c9ffdc9fdb8bb6c8b930f (diff) | |
| parent | 6f7192bb12358b1995e2a84db155a0149d110717 (diff) | |
| download | monzero-gui-0ae643542929a60c76ec4eb9888d8b35cece73d9.tar.gz monzero-gui-0ae643542929a60c76ec4eb9888d8b35cece73d9.tar.xz monzero-gui-0ae643542929a60c76ec4eb9888d8b35cece73d9.zip | |
Merge pull request #3397
6f7192b Transfer: fix desktop icon style (selsta)
| -rw-r--r-- | components/InlineButton.qml | 1 | ||||
| -rw-r--r-- | pages/Transfer.qml | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/components/InlineButton.qml b/components/InlineButton.qml index 9d6cba06..e493a67a 100644 --- a/components/InlineButton.qml +++ b/components/InlineButton.qml @@ -43,6 +43,7 @@ Item { property alias text: inlineText.text property alias fontPixelSize: inlineText.font.pixelSize property alias fontFamily: inlineText.font.family + property alias fontStyleName: inlineText.font.styleName property bool isFontAwesomeIcon: fontFamily == FontAwesome.fontFamily || fontFamily == FontAwesome.fontFamilySolid property alias buttonColor: rect.color diff --git a/pages/Transfer.qml b/pages/Transfer.qml index fc87b9b0..71b14788 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -273,7 +273,8 @@ Rectangle { } MoneroComponents.InlineButton { - fontFamily: FontAwesome.fontFamily + fontFamily: FontAwesome.fontFamilySolid + fontStyleName: "Solid" fontPixelSize: 18 text: FontAwesome.desktop onClicked: { |
