mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 12:35:14 +00:00
VirtualConsole: Don't output the bell character.
This commit is contained in:
parent
87b10f6e6e
commit
2850225587
Notes:
sideshowbarker
2024-07-19 16:08:19 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/2850225587a
1 changed files with 3 additions and 0 deletions
|
@ -433,6 +433,9 @@ void VirtualConsole::on_char(byte ch)
|
|||
return;
|
||||
}
|
||||
break;
|
||||
case '\a':
|
||||
// FIXME: Bell!
|
||||
return;
|
||||
case '\t': {
|
||||
for (unsigned i = m_cursor_column; i < columns(); ++i) {
|
||||
if (m_horizontal_tabs[i]) {
|
||||
|
|
Loading…
Add table
Reference in a new issue