mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
Kernel: TTY:VirtualConsole, replace character attribute with code_point
This commit is contained in:
parent
7abca30f41
commit
00edc89288
Notes:
sideshowbarker
2024-07-19 05:37:22 +09:00
Author: https://github.com/asliturk Commit: https://github.com/SerenityOS/serenity/commit/00edc892884 Pull-request: https://github.com/SerenityOS/serenity/pull/2541
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…
Reference in a new issue