Don't disable SIGWINCH in ncmpcpp
It makes ncmpcpp resize itself when the window size has changed. Not sure why this was ever added, but according to @its-pointless it can be removed
This commit is contained in:
parent
70d58a7a7c
commit
e8c1ceafd9
@ -1,7 +1,7 @@
|
||||
TERMUX_PKG_HOMEPAGE=https://rybczak.net/ncmpcpp/
|
||||
TERMUX_PKG_DESCRIPTION="NCurses Music Player Client (Plus Plus)"
|
||||
TERMUX_PKG_VERSION=0.8
|
||||
TERMUX_PKG_REVISION=4
|
||||
TERMUX_PKG_REVISION=5
|
||||
TERMUX_PKG_SRCURL=https://rybczak.net/ncmpcpp/stable/ncmpcpp-${TERMUX_PKG_VERSION}.tar.bz2
|
||||
TERMUX_PKG_SHA256=2f0f2a1c0816119430880be6932e5eb356b7875dfa140e2453a5a802909f465a
|
||||
TERMUX_PKG_DEPENDS="fftw, boost, readline, libcurl, libmpdclient"
|
||||
|
@ -5,9 +5,8 @@
|
||||
std::cerr.rdbuf(errorlog.rdbuf());
|
||||
|
||||
- sigignore(SIGPIPE);
|
||||
- signal(SIGWINCH, sighandler);
|
||||
+ // sigignore(SIGPIPE);
|
||||
+ // signal(SIGWINCH, sighandler);
|
||||
signal(SIGWINCH, sighandler);
|
||||
|
||||
Mpd.setNoidleCallback(Status::update);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user