Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Send AttrOff when clearing the screen (#523)
In tcell v2.4, the following calls would reset the screen to its default color: 1. SetContent() to change the bg color to maroon. 2. Clear() 3. Show() In tcell v2.5, the behavior changed to clear the screen to the last-used style passed to SetContent. This happens because commit 62f5502 set the dirty flag to false for all cells, on the assumption that sending ti.Clear would clear the cells anyway. Unlike the drawCell calls triggered by the dirty flag, however, clearScreen does not send AttrOff. This causes the screen to clear to the last-used background color.
- Loading branch information