aboutsummaryrefslogtreecommitdiff
path: root/components/StandardButton.qml
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-07-06 11:39:19 -0400
committerluigi1111 <luigi1111w@gmail.com>2021-07-06 11:39:19 -0400
commit21cce4cfb421940bec96bacad8327ddc37ff5b69 (patch)
treeb6749835887cdd45d7e968236a590800602c1b4b /components/StandardButton.qml
parentd59595740528bd71abd7ee2f481ae5188034849c (diff)
parentb2fbe516594adef316ef404190be592c392e802d (diff)
downloadmonzero-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.qml1
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;
}