mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
Kernel: TTY:VirtualConsole, replace character attribute with code_point
This commit is contained in:
parent
7abca30f41
commit
00edc89288
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ void VirtualConsole::on_key_pressed(KeyboardDevice::Event event)
|
|||
return;
|
||||
}
|
||||
|
||||
m_terminal.handle_key_press(event.key, event.character, event.flags);
|
||||
m_terminal.handle_key_press(event.key, event.code_point, event.flags);
|
||||
}
|
||||
|
||||
ssize_t VirtualConsole::on_tty_write(const u8* data, ssize_t size)
|
||||
|
|
Loading…
Add table
Reference in a new issue