Fix issue where entire screen was cleared by VT100 session erasing status line set by controller

This commit is contained in:
Andrew Kay
2019-06-26 19:34:57 -05:00
parent 8e78bbdea8
commit f6e7f2ff09
2 changed files with 11 additions and 4 deletions

View File

@@ -80,7 +80,7 @@ class Controller:
self.logger.info(f'Rows = {rows}, Columns = {columns}, Keymap = {keymap_name}')
self.terminal.display.clear_screen()
self.terminal.display.clear_screen(include_status_line=True)
# Show the attached indicator on the status line.
self.terminal.display.status_line.write_string(0, 'S')