ncmixer

ncurses audio mixer for DJ'ing
git clone git://git.2f30.org/ncmixer
Log | Files | Refs | README | LICENSE

commit f5916e03b312b27b595d088d3bd7e0a730c2b47e
parent aae78337803c45ef5a87da8aaa9030fa797b30b9
Author: lostd <lostd@2f30.org>
Date:   Sat, 11 Jun 2016 10:34:17 +0100

Redraw on window resize

Diffstat:
Mncmixer.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/ncmixer.c b/ncmixer.c @@ -396,6 +396,9 @@ loop(void) if (nready == -1) { if (errno != EINTR) printerr(1, "poll"); + /* force refresh to update COLS on window resize */ + refresh(); + draw(); continue; }