mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05: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…
Reference in a new issue