diff options
| author | selsta <selsta@sent.at> | 2021-05-19 02:01:10 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-05-19 02:01:10 +0200 |
| commit | b2fbe516594adef316ef404190be592c392e802d (patch) | |
| tree | c708b3dd30980890d53f16c89c7ee67f1141ab6e /components/StandardButton.qml | |
| parent | 937cb9825672d07a1917d2d9daf823802ec31d1b (diff) | |
| download | monzero-gui-b2fbe516594adef316ef404190be592c392e802d.tar.gz monzero-gui-b2fbe516594adef316ef404190be592c392e802d.tar.xz monzero-gui-b2fbe516594adef316ef404190be592c392e802d.zip | |
StandardButton: fix warning with fallbackicon
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 d26d9aa8..4eadd2d8 100644 --- a/components/StandardButton.qml +++ b/components/StandardButton.qml @@ -143,6 +143,7 @@ Item { width: button.small ? 16 : 20 height: button.small ? 16 : 20 source: { + if (fontAwesomeIcon) return ""; if(button.rightIconInactive !== "" && !button.enabled) { return button.rightIconInactive; } |
