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

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