mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 09:37:34 +00:00
LibVT: Make Terminal::clear_in_line() keep line attributes
This commit is contained in:
parent
09a2db89c9
commit
6880359064
1 changed files with 1 additions and 1 deletions
|
@ -856,7 +856,7 @@ void Terminal::put_character_at(unsigned row, unsigned column, u32 code_point)
|
|||
void Terminal::clear_in_line(u16 row, u16 first_column, u16 last_column)
|
||||
{
|
||||
VERIFY(row < rows());
|
||||
active_buffer()[row].clear_range(first_column, last_column);
|
||||
active_buffer()[row].clear_range(first_column, last_column, m_current_state.attribute);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue