aboutsummaryrefslogtreecommitdiffstats
path: root/screen_utils.c
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-04-21 19:06:18 +0000
committerKalle Wallin <kaw@linux.se>2004-04-21 19:06:18 +0000
commitb1f77e2684e85fac5ef5d50fc1342d7d53e5a492 (patch)
tree7727ec3010c4368f59b19a3e246f8d62cc8944d5 /screen_utils.c
parent41d5f057a8e0fa8ed4a0c8465ce8a1d0e7ab8e1a (diff)
downloadmpd-b1f77e2684e85fac5ef5d50fc1342d7d53e5a492.tar.gz
mpd-b1f77e2684e85fac5ef5d50fc1342d7d53e5a492.tar.xz
mpd-b1f77e2684e85fac5ef5d50fc1342d7d53e5a492.zip
Fixed resize handling (SIGWINCH).
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@871 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'screen_utils.c')
-rw-r--r--screen_utils.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/screen_utils.c b/screen_utils.c
index c9fff74c4..1fb581aaa 100644
--- a/screen_utils.c
+++ b/screen_utils.c
@@ -50,6 +50,8 @@ screen_getch(WINDOW *w, char *prompt)
timeout(-1);
key = wgetch(w);
+ if( key==KEY_RESIZE )
+ screen_resize();
noecho();
curs_set(0);