Remove unnecessary parens

This commit is contained in:
Benny Baumann 2020-11-21 16:07:19 +01:00
parent f5c3349bdb
commit f752c6e2d1
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ static HandlerResult DisplayOptionsPanel_eventHandler(Panel* super, int ch) {
case KEY_MOUSE:
case KEY_RECLICK:
case ' ':
CheckItem_set(selected, ! (CheckItem_get(selected)) );
CheckItem_set(selected, !CheckItem_get(selected));
result = HANDLED;
}