From d94249d67e0f80f66850fdb16b4fffc66d715af5 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Thu, 29 Jun 2023 21:04:44 +0200 Subject: [PATCH] Fixed an issue where the rating component was sometimes color shifted incorrectly --- es-core/src/components/RatingComponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-core/src/components/RatingComponent.cpp b/es-core/src/components/RatingComponent.cpp index 3a0a26077..ad4482aec 100644 --- a/es-core/src/components/RatingComponent.cpp +++ b/es-core/src/components/RatingComponent.cpp @@ -271,7 +271,7 @@ void RatingComponent::applyTheme(const std::shared_ptr& theme, } else { mIconFilled.setColorShift(0xFFFFFFFF); - mIconFilled.setColorShift(0xFFFFFFFF); + mIconUnfilled.setColorShift(0xFFFFFFFF); } } }