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:
Oliver Schmidhauser
2017-08-07 12:37:07 +02:00
committed by Fredrik Fornwall
parent 70d58a7a7c
commit e8c1ceafd9
2 changed files with 2 additions and 3 deletions

View File

@@ -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);