From 25ee51e2ca3ae14943cc87215e9977f4d8773e01 Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Fri, 2 Jun 2023 20:19:50 -0400 Subject: [PATCH] Actually use the theme dark color for window background. --- gpt4all-chat/main.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gpt4all-chat/main.qml b/gpt4all-chat/main.qml index 362fd4f8..f72adaae 100644 --- a/gpt4all-chat/main.qml +++ b/gpt4all-chat/main.qml @@ -16,7 +16,6 @@ Window { minimumHeight: 480 visible: true title: qsTr("GPT4All v") + Qt.application.version - color: "transparent" Theme { id: theme @@ -25,6 +24,8 @@ Window { property var currentChat: LLM.chatListModel.currentChat property var chatModel: currentChat.chatModel + color: theme.backgroundDarkest + // Startup code Component.onCompleted: { if (!LLM.compatHardware) {