clarify logical condition in wlr taskbar module

This commit is contained in:
Visal Vijay
2026-03-22 11:40:44 +05:30
parent ab7bfdb297
commit 60c57b7195

View File

@@ -198,7 +198,7 @@ void Task::handle_title(const char* title) {
title_ = title;
hide_if_ignored();
if (!with_icon_ && !with_name_ || app_info_) {
if ((!with_icon_ && !with_name_) || app_info_) {
return;
}