From 1fb185563c2f83e3738cfc594d2125ec9999c03e Mon Sep 17 00:00:00 2001 From: reionwong Date: Tue, 1 Sep 2026 03:28:48 -0400 Subject: [PATCH] fix(filemanager): match settings sidebar active color --- qml/SideBar.qml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/qml/SideBar.qml b/qml/SideBar.qml index 720f726..c374e5d 100644 --- a/qml/SideBar.qml +++ b/qml/SideBar.qml @@ -63,16 +63,10 @@ ListView { highlight: Rectangle { radius: FishUI.Theme.mediumRadius - color: FishUI.Theme.secondBackgroundColor + color: Qt.rgba(FishUI.Theme.textColor.r, + FishUI.Theme.textColor.g, + FishUI.Theme.textColor.b, 0.05) smooth: true - - Rectangle { - anchors.fill: parent - radius: FishUI.Theme.mediumRadius - color: Qt.rgba(FishUI.Theme.highlightColor.r, - FishUI.Theme.highlightColor.g, - FishUI.Theme.highlightColor.b, FishUI.Theme.darkMode ? 0.3 : 0.2) - } } section.property: "category"