mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-11 12:20:52 +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
b6488fce33
commit
b16c6d3c6d
@@ -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