From 4bb04a92a4f7bf33938561801822ab0f840f9fc2 Mon Sep 17 00:00:00 2001 From: Danfro Date: Thu, 23 Apr 2026 17:00:14 +0200 Subject: [PATCH] fix string color of current holdings --- qml/PortfolioPage.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/qml/PortfolioPage.qml b/qml/PortfolioPage.qml index a233b7b..3195d7f 100644 --- a/qml/PortfolioPage.qml +++ b/qml/PortfolioPage.qml @@ -79,6 +79,7 @@ Page { // === Holdings Header === Text { text: "Your Holdings" + " Worth ($" + totalValue.toFixed(2)+")" + color:AppTheme.getThemeColors(theme.name).textColorPrimary font.bold: true font.pixelSize: units.gu(2.2) }