Merge pull request #4945 from B2krobbery/clean-parentheses-fix

clarify logical condition in wlr taskbar module
This commit is contained in:
Alexis Rouillard
2026-03-25 12:30:03 +01:00
committed by GitHub

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;
}