From 9989270a08b72be02921e1c32ec01950a470cca5 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Tue, 12 Apr 2011 18:24:37 +0200 Subject: [PATCH] Cleaned up the line display. Removed the clrtoeol, which seems to be useless (?) --- selector.c | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/selector.c b/selector.c index 5f6203d..ca9d392 100644 --- a/selector.c +++ b/selector.c @@ -608,27 +608,19 @@ void update_screen(int *current_focus_line, int *displayed_focus_line, k++; } - /* We fill the rest of the line with blanks if this is the - highlighted line */ + /* Highlight the highlighted line ... */ if(l == new_focus_line) { while(k < console_width) { buffer[k++] = ' '; } - } - - buffer[k++] = '\n'; - buffer[k++] = '\0'; - - clrtoeol(); - - /* Highlight the highlighted line ... */ - - if(l == new_focus_line) { attron(attr_focus_line); addnstr(buffer, console_width); attroff(attr_focus_line); } else { + buffer[k++] = '\n'; + buffer[k++] = '\0'; + /* clrtoeol(); */ addnstr(buffer, console_width); } -- 2.20.1