mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2025-12-27 06:00:10 +00:00
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:
committed by
Fredrik Fornwall
parent
70d58a7a7c
commit
e8c1ceafd9
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user