diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-07-06 11:39:19 -0400 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-07-06 11:39:19 -0400 |
| commit | 21cce4cfb421940bec96bacad8327ddc37ff5b69 (patch) | |
| tree | b6749835887cdd45d7e968236a590800602c1b4b /components/StandardButton.qml | |
| parent | d59595740528bd71abd7ee2f481ae5188034849c (diff) | |
| parent | b2fbe516594adef316ef404190be592c392e802d (diff) | |
| download | monzero-gui-21cce4cfb421940bec96bacad8327ddc37ff5b69.tar.gz monzero-gui-21cce4cfb421940bec96bacad8327ddc37ff5b69.tar.xz monzero-gui-21cce4cfb421940bec96bacad8327ddc37ff5b69.zip | |
Merge pull request #3487
b2fbe51 StandardButton: fix warning with fallbackicon (selsta)
Diffstat (limited to 'components/StandardButton.qml')
| -rw-r--r-- | components/StandardButton.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/StandardButton.qml b/components/StandardButton.qml index d77e611f..b52b3a00 100644 --- a/components/StandardButton.qml +++ b/components/StandardButton.qml @@ -146,6 +146,7 @@ Item { width: button.small ? 16 : 20 height: button.small ? 16 : 20 source: { + if (fontAwesomeIcon) return ""; if(button.rightIconInactive !== "" && !button.enabled) { return button.rightIconInactive; } |
