From b2fbe516594adef316ef404190be592c392e802d Mon Sep 17 00:00:00 2001 From: selsta Date: Wed, 19 May 2021 02:01:10 +0200 Subject: [PATCH] StandardButton: fix warning with fallbackicon --- components/StandardButton.qml | 1 + 1 file changed, 1 insertion(+) 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; }