diff options
author | Kalle Wallin <kaw@linux.se> | 2004-04-21 19:06:18 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-04-21 19:06:18 +0000 |
commit | b1f77e2684e85fac5ef5d50fc1342d7d53e5a492 (patch) | |
tree | 7727ec3010c4368f59b19a3e246f8d62cc8944d5 /screen_help.c | |
parent | 41d5f057a8e0fa8ed4a0c8465ce8a1d0e7ab8e1a (diff) | |
download | mpd-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 '')
-rw-r--r-- | screen_help.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/screen_help.c b/screen_help.c index 833342b9d..37bf9a385 100644 --- a/screen_help.c +++ b/screen_help.c @@ -172,6 +172,13 @@ help_init(WINDOW *w, int cols, int rows) } static void +help_resize(int cols, int rows) +{ + lw->cols = cols; + lw->rows = rows; +} + +static void help_exit(void) { list_window_free(lw); @@ -234,6 +241,7 @@ get_screen_help(void) functions.exit = help_exit; functions.open = NULL; functions.close = NULL; + functions.resize = help_resize; functions.paint = help_paint; functions.update = help_update; functions.cmd = help_cmd; |