From 012c6c23c73283ee5591ae00d08af14d9eeb8279 Mon Sep 17 00:00:00 2001 From: Warchamp7 Date: Thu, 3 Sep 2026 19:15:56 -0400 Subject: [PATCH] frontend: Fix group icon styling This helper does not support multiple classes in a single line. Each class must be added separately. --- frontend/components/SourceTreeItem.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/components/SourceTreeItem.cpp b/frontend/components/SourceTreeItem.cpp index 79059f155..b7a8290d8 100644 --- a/frontend/components/SourceTreeItem.cpp +++ b/frontend/components/SourceTreeItem.cpp @@ -543,7 +543,8 @@ void SourceTreeItem::Update(bool force) } else if (type == Type::Group) { expand = new QCheckBox(); - idian::Utils::addClass(expand, "checkbox-icon indicator-expand"); + idian::Utils::addClass(expand, "checkbox-icon"); + idian::Utils::addClass(expand, "indicator-expand"); expand->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum); #ifdef __APPLE__ expand->setAttribute(Qt::WA_LayoutUsesWidgetRect);