diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | screen.c | 3 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,9 @@ 2004-04-23 Kalle Wallin <kaw@linux.se> * Updated Changelog, TODO, NEWS and the manual page. + * screen_play.c: Make shure the cursor stays on the same row when + deleting a playlist entry. + * screen.c: Turn off LINE_COLORS after drawing the top line. + 2004-04-22 Kalle Wallin <kaw@linux.se> * Added smart delete and add (#0000220), at the moment only used @@ -175,6 +175,9 @@ paint_top_window(char *header, mpd_client_t *c, int clear) mvwhline(w, 1, 0, ACS_HLINE, screen->top_window.cols); #endif + if( options.enable_colors ) + wattroff(w, LINE_COLORS); + wnoutrefresh(w); } } |