From fcffbbced889717e09115e22fd181341746bf6e6 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Sat, 19 Jul 2025 14:26:18 -0700 Subject: [PATCH] core/desktopentry: lookup wm class in nodisplay entries --- src/core/desktopentry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/desktopentry.cpp b/src/core/desktopentry.cpp index 35824313..bb0d2c55 100644 --- a/src/core/desktopentry.cpp +++ b/src/core/desktopentry.cpp @@ -389,7 +389,7 @@ DesktopEntry* DesktopEntryManager::byId(const QString& id) { DesktopEntry* DesktopEntryManager::heuristicLookup(const QString& name) { if (auto* entry = DesktopEntryManager::byId(name)) return entry; - auto& list = this->mApplications.valueList(); + auto list = this->desktopEntries.values(); auto iter = std::ranges::find_if(list, [&](const DesktopEntry* entry) { return name == entry->mStartupClass;