From 70043c5be41674446e9629354eca68e493523068 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Thu, 8 Jul 2021 18:01:35 +0200 Subject: [PATCH] feat(StatusRoundIcon): enable `icon.color` support --- src/StatusQ/Components/StatusRoundIcon.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/StatusQ/Components/StatusRoundIcon.qml b/src/StatusQ/Components/StatusRoundIcon.qml index 3704aded..e1fbb7e8 100644 --- a/src/StatusQ/Components/StatusRoundIcon.qml +++ b/src/StatusQ/Components/StatusRoundIcon.qml @@ -9,6 +9,7 @@ Rectangle { width: 24 height: 24 rotation: 0 + color: Theme.palette.primaryColor1 background: StatusIconBackgroundSettings { width: 40 height: 40 @@ -29,7 +30,7 @@ Rectangle { width: statusRoundedIcon.icon.width height: statusRoundedIcon.icon.height - color: Theme.palette.primaryColor1 + color: statusRoundedIcon.icon.color icon: statusRoundedIcon.icon.name rotation: statusRoundedIcon.icon.rotation }