From 0245e15ddfaf1781cb57ab9630161546a4603b69 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 22 Apr 2024 16:12:44 -0400 Subject: [PATCH] Fix the wrong folder-symbolic icon being used This affected dark themes, oops. --- sagasu/src/filetreemodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sagasu/src/filetreemodel.cpp b/sagasu/src/filetreemodel.cpp index 3cb5028..8d2be14 100644 --- a/sagasu/src/filetreemodel.cpp +++ b/sagasu/src/filetreemodel.cpp @@ -137,7 +137,7 @@ QVariant FileTreeModel::data(const QModelIndex &index, int role) const } } else if (role == Qt::DecorationRole) { if (item->type == TreeType::Folder) { - return QIcon::fromTheme(QStringLiteral("folder-black-symbolic")); + return QIcon::fromTheme(QStringLiteral("folder-symbolic")); } else if (item->type == TreeType::File) { QFileInfo info(item->name); const FileType type = FileTypes::getFileType(info.completeSuffix());