Drop useless double parenthesis

This commit is contained in:
Christian Göttsche 2021-01-05 23:45:15 +01:00
parent 7386c6fed0
commit 7ff654f2df
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ bool IncSet_handleKey(IncSet* this, int ch, Panel* panel, IncMode_GetPanelValue
}
}
}
} else if ((ch == KEY_BACKSPACE || ch == 127)) {
} else if (ch == KEY_BACKSPACE || ch == 127) {
if (mode->index > 0) {
mode->index--;
mode->buffer[mode->index] = 0;