aboutsummaryrefslogtreecommitdiffstats
path: root/screen_play.c
diff options
context:
space:
mode:
Diffstat (limited to 'screen_play.c')
-rw-r--r--screen_play.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/screen_play.c b/screen_play.c
index c52c2d165..7c5cab1ff 100644
--- a/screen_play.c
+++ b/screen_play.c
@@ -53,7 +53,7 @@ play_paint(screen_t *screen, mpd_client_t *c)
w->clear = 1;
list_window_paint(screen->playlist, list_callback, (void *) c);
- wrefresh(screen->playlist->w);
+ wnoutrefresh(screen->playlist->w);
}
void
@@ -72,7 +72,7 @@ play_update(screen_t *screen, mpd_client_t *c)
else if( screen->playlist->repaint || 1)
{
list_window_paint(screen->playlist, list_callback, (void *) c);
- wrefresh(screen->playlist->w);
+ wnoutrefresh(screen->playlist->w);
screen->playlist->repaint = 0;
}
}