From a67b787386d67fdba8ac6471f0254727f0dd72a8 Mon Sep 17 00:00:00 2001 From: Slendi Date: Wed, 15 Oct 2025 03:41:19 +0300 Subject: [PATCH] Oops forgot I disabled an if Signed-off-by: Slendi --- src/IconRegistry.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/IconRegistry.cpp b/src/IconRegistry.cpp index 4b812d3..15c1ce7 100644 --- a/src/IconRegistry.cpp +++ b/src/IconRegistry.cpp @@ -124,9 +124,8 @@ static auto get_current_icon_theme() -> std::optional const auto de { detect_desktop_environment() }; std::transform(de.begin(), de.end(), de.begin(), ::tolower); - if (0 - && (de.find("kde") != std::string::npos - || de.find("plasma") != std::string::npos)) { + if (de.find("kde") != std::string::npos + || de.find("plasma") != std::string::npos) { if (auto const t = kde_get_theme(); !t.empty()) { return t; }