From 9896ea6c10fb7042bedbf5d076a6c0f067acd3e8 Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Tue, 30 May 2023 21:11:04 -0400 Subject: [PATCH] Make the comboboxes align in UI. --- gpt4all-chat/main.qml | 3 --- gpt4all-chat/qml/MyComboBox.qml | 2 -- 2 files changed, 5 deletions(-) diff --git a/gpt4all-chat/main.qml b/gpt4all-chat/main.qml index b1cdd625..bb4293ff 100644 --- a/gpt4all-chat/main.qml +++ b/gpt4all-chat/main.qml @@ -148,9 +148,6 @@ Window { Accessible.role: Accessible.ComboBox Accessible.name: qsTr("ComboBox for displaying/picking the current model") Accessible.description: qsTr("Use this for picking the current model to use; the first item is the current model") - background: Rectangle { - color: theme.backgroundDark - } onActivated: { currentChat.stopGenerating() currentChat.reset(); diff --git a/gpt4all-chat/qml/MyComboBox.qml b/gpt4all-chat/qml/MyComboBox.qml index d0f1ec6e..213154d1 100644 --- a/gpt4all-chat/qml/MyComboBox.qml +++ b/gpt4all-chat/qml/MyComboBox.qml @@ -52,8 +52,6 @@ ComboBox { } background: Rectangle { color: theme.backgroundDark - border.width: 1 - border.color: theme.backgroundLightest radius: 10 } }