Christian Göttsche
2020-09-11 19:27:56 +02:00
committed by cgzones
parent 1f5bd5c4c8
commit 8a849bc85a
6 changed files with 6 additions and 6 deletions

View File

@ -81,7 +81,7 @@ static HandlerResult CategoriesPanel_eventHandler(Panel* super, int ch) {
break;
}
default:
if (ch < 255 && isalpha(ch))
if (0 < ch && ch < 255 && isalpha((unsigned char)ch))
result = Panel_selectByTyping(super, ch);
if (result == BREAK_LOOP)
result = IGNORED;