mirror of
https://github.com/mauiaaron/apple2.git
synced 2025-01-16 01:31:06 +00:00
Allow small space to show in alternate/configurable keyboard
This commit is contained in:
parent
be048746c5
commit
4cad470a03
@ -372,12 +372,17 @@ static inline int64_t _tap_key_at_point(float x, float y) {
|
|||||||
case ICONTEXT_LEFTSPACE:
|
case ICONTEXT_LEFTSPACE:
|
||||||
case ICONTEXT_MIDSPACE:
|
case ICONTEXT_MIDSPACE:
|
||||||
case ICONTEXT_RIGHTSPACE:
|
case ICONTEXT_RIGHTSPACE:
|
||||||
|
case ICONTEXT_SPACE_VISUAL:
|
||||||
isASCII = true;
|
isASCII = true;
|
||||||
key = ' ';
|
key = ' ';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default: // ASCII
|
default: // ASCII
|
||||||
isASCII = true;
|
isASCII = true;
|
||||||
|
if (key >= 0x80) {
|
||||||
|
RELEASE_LOG("unhandled key code...");
|
||||||
|
key = -1;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user