aboutsummaryrefslogtreecommitdiffstats
path: root/screen_play.c
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-03-26 13:28:51 +0000
committerKalle Wallin <kaw@linux.se>2004-03-26 13:28:51 +0000
commit1e17a1289f54c440ac552c741e949d66b3e9bfa5 (patch)
tree7260bed78f83b13b6b873946294d6f69c48ecad9 /screen_play.c
parent1c75a79b279c05fb7049183069942de39536a155 (diff)
downloadmpd-1e17a1289f54c440ac552c741e949d66b3e9bfa5.tar.gz
mpd-1e17a1289f54c440ac552c741e949d66b3e9bfa5.tar.xz
mpd-1e17a1289f54c440ac552c741e949d66b3e9bfa5.zip
Replaced wrefresh() with wnoutrefresh().
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@499 09075e82-0dd4-0310-85a5-a0d7c8717e4f
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;
}
}