From c05cc09d2074a3c11cb8d497e818f2fe86663708 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Mon, 26 Oct 2020 10:21:41 -0400 Subject: [PATCH] fix: fix Status button with weird margin --- ui/shared/status/StatusButton.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/shared/status/StatusButton.qml b/ui/shared/status/StatusButton.qml index b65bbabd1b..83e802ba5f 100644 --- a/ui/shared/status/StatusButton.qml +++ b/ui/shared/status/StatusButton.qml @@ -25,7 +25,7 @@ Button { Loader { id: iconLoader - active: !!control.icon && !!control.icon.source + active: !!control.icon && !!control.icon.source.toString() anchors.left: parent.left anchors.leftMargin: Style.current.halfPadding anchors.verticalCenter: parent.verticalCenter