diff options
| author | selsta <selsta@sent.at> | 2021-04-14 21:30:42 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-04-15 14:55:40 +0200 |
| commit | 6f7192bb12358b1995e2a84db155a0149d110717 (patch) | |
| tree | 985676e77650dc4753e8917821be91db1a7cb423 | |
| parent | 8444a9563e959fb8cac599b0178faae33eada25d (diff) | |
| download | monzero-gui-6f7192bb12358b1995e2a84db155a0149d110717.tar.gz monzero-gui-6f7192bb12358b1995e2a84db155a0149d110717.tar.xz monzero-gui-6f7192bb12358b1995e2a84db155a0149d110717.zip | |
Transfer: fix desktop icon style
| -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: { |
