From 60acc186252f7b7ff62ab215c0b21d037fa9eba5 Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Tue, 2 May 2023 11:34:39 -0400 Subject: [PATCH] Use different border colors if we're current or being edited. --- qml/ChatDrawer.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/ChatDrawer.qml b/qml/ChatDrawer.qml index 882fcf09..b3a04fed 100644 --- a/qml/ChatDrawer.qml +++ b/qml/ChatDrawer.qml @@ -83,7 +83,7 @@ Drawer { property bool isCurrent: LLM.chatListModel.currentChat === LLM.chatListModel.get(index) color: index % 2 === 0 ? theme.backgroundLight : theme.backgroundLighter border.width: isCurrent - border.color: theme.backgroundLightest + border.color: chatName.readOnly ? theme.assistantColor : theme.userColor TextField { id: chatName anchors.left: parent.left