1
0
mirror of https://github.com/irssi/irssi.git synced 2024-10-06 04:53:38 -04:00

term_clear() should set the background color to RESET, not to 0 (black).

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2417 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-02-10 14:10:09 +00:00 committed by cras
parent aaeea771c2
commit c1d61ddeaf

View File

@ -183,7 +183,7 @@ void term_clear(void)
{
if (term_detached) return;
term_set_color(root_window, 0);
term_set_color(root_window, ATTR_RESET);
terminfo_clear();
term_move_reset(0, 0);