This commit is contained in:
Branimir Karadžić 2015-03-11 23:30:41 -07:00
parent b8f2b24a82
commit 6eafd8b137

View file

@ -61,12 +61,12 @@ namespace entry
switch (_key) switch (_key)
{ {
case Key::Esc: return 0x1b; case Key::Esc: return 0x1b;
case Key::Return: return 0x0d; case Key::Return: return '\n';
case Key::Tab: return 0x09; case Key::Tab: return '\t';
case Key::Space: return (char)0xa0; case Key::Space: return ' ';
case Key::Backspace: return 0x08; case Key::Backspace: return 0x08;
case Key::Plus: return 0x2b; case Key::Plus: return '+';
case Key::Minus: return 0x2d; case Key::Minus: return '-';
default: break; default: break;
} }