From ffed2ff823c6f7b9a43f97e0ffb000181a8cc7cf Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Thu, 1 Feb 2024 08:29:36 -0500 Subject: [PATCH] Fix for progress bar color on legacy theme. Signed-off-by: Adam Treat --- gpt4all-chat/qml/Theme.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpt4all-chat/qml/Theme.qml b/gpt4all-chat/qml/Theme.qml index 44b006b4..042d4ad3 100644 --- a/gpt4all-chat/qml/Theme.qml +++ b/gpt4all-chat/qml/Theme.qml @@ -203,7 +203,7 @@ QtObject { property color progressForeground: { switch (MySettings.chatTheme) { case "LegacyDark": - return accentColor; + return purple400; case "Dark": return accentColor; default: