From f974911b1c7c5741a4867ea11d9ffae2e6c77b3a Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Thu, 11 Sep 2025 23:26:58 -0400 Subject: [PATCH] color text on checked --- components/StyledTabButton.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/StyledTabButton.qml b/components/StyledTabButton.qml index 73dbe6c..dea1d40 100644 --- a/components/StyledTabButton.qml +++ b/components/StyledTabButton.qml @@ -13,7 +13,7 @@ TabButton { verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter padding: 6 - color: control.hovered ? Styling.theme.primarycontent : Styling.theme.basecontent + color: control.hovered ? Styling.theme.primarycontent : control.checked ? Styling.theme.accent : Styling.theme.basecontent Behavior on color { ColorAnimation { duration: Styling.animations.speed.normal