Browse Source

Bugfix: TUI: Avoid clearing the whole screen when we just want to clear the log window

Luke Dashjr 13 years ago
parent
commit
a7175dd0c8
1 changed files with 0 additions and 1 deletions
  1. 0 1
      cgminer.c

+ 0 - 1
cgminer.c

@@ -1788,7 +1788,6 @@ bool log_curses_only(int prio, const char *f, va_list ap)
 void clear_logwin(void)
 void clear_logwin(void)
 {
 {
 	if (curses_active_locked()) {
 	if (curses_active_locked()) {
-		erase();
 		wclear(logwin);
 		wclear(logwin);
 		unlock_curses();
 		unlock_curses();
 	}
 	}