Oops forgot I disabled an if
Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
@@ -124,9 +124,8 @@ static auto get_current_icon_theme() -> std::optional<std::string> 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user