Allow small space to show in alternate/configurable keyboard

This commit is contained in:
Aaron Culliney 2015-09-04 23:12:41 -07:00
parent be048746c5
commit 4cad470a03

View File

@ -372,12 +372,17 @@ static inline int64_t _tap_key_at_point(float x, float y) {
case ICONTEXT_LEFTSPACE:
case ICONTEXT_MIDSPACE:
case ICONTEXT_RIGHTSPACE:
case ICONTEXT_SPACE_VISUAL:
isASCII = true;
key = ' ';
break;
default: // ASCII
isASCII = true;
if (key >= 0x80) {
RELEASE_LOG("unhandled key code...");
key = -1;
}
break;
}