1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:17:35 +00:00

LibVT: Tweak input parsing related names

This commit is contained in:
Andreas Kling 2020-05-16 19:24:24 +02:00
parent c4edc4c550
commit 06f3eb0ecd
3 changed files with 23 additions and 24 deletions

View file

@ -82,7 +82,7 @@ void TerminalWidget::set_pty_master_fd(int fd)
return;
}
for (ssize_t i = 0; i < nread; ++i)
m_terminal.on_char(buffer[i]);
m_terminal.on_input(buffer[i]);
flush_dirty_lines();
};
}