1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 19:17:52 +00:00

Extends logic for when to fall back on standard keypress logic even in logical mode.

This commit is contained in:
Thomas Harte
2020-03-01 20:25:12 -05:00
parent 611182910a
commit ed18092088
14 changed files with 60 additions and 5 deletions
+4
View File
@@ -416,6 +416,10 @@ class ConcreteMachine:
Utility::TypeRecipient<CharacterMapper>::add_typer(string);
}
bool can_type(char c) final {
return Utility::TypeRecipient<CharacterMapper>::can_type(c);
}
KeyboardMapper *get_keyboard_mapper() final {
return &keyboard_mapper_;
}