From f20c7b5d3da6b971c20cc4c3f535116ff5a415d7 Mon Sep 17 00:00:00 2001 From: Martchus Date: Mon, 1 Apr 2024 14:24:28 +0200 Subject: [PATCH] Avoid using `story-editor` icon as it is not actually dark in breeze-dark --- CMakeLists.txt | 2 +- qml/EntryDelegate.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ce4e672..cd40a3f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -105,7 +105,7 @@ set(REQUIRED_ICONS preferences-desktop-locale qtcreator search - story-editor + view-list-details-symbolic system-file-manager system-run system-search diff --git a/qml/EntryDelegate.qml b/qml/EntryDelegate.qml index 742348d..6c0bbb1 100644 --- a/qml/EntryDelegate.qml +++ b/qml/EntryDelegate.qml @@ -32,7 +32,7 @@ Item { height: Kirigami.Units.iconSizes.smallMedium Layout.fillHeight: true source: delegateModel.isNode( - index) ? "folder-symbolic" : "story-editor" + index) ? "folder-symbolic" : "view-list-details-symbolic" } Controls.Label { Layout.fillWidth: true