aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-03 14:28:43 +0200
committerMax Kellermann <max@duempel.org>2008-10-03 14:28:43 +0200
commit0ae851aa39de5dfdf6b97c3e774aa322c820f410 (patch)
treee96335f74369573b256f3ef65166324f5bab3d42 /src/command.c
parentb64329b9942d2315dd968264e92a51d63a135a77 (diff)
downloadmpd-0ae851aa39de5dfdf6b97c3e774aa322c820f410.tar.gz
mpd-0ae851aa39de5dfdf6b97c3e774aa322c820f410.tar.xz
mpd-0ae851aa39de5dfdf6b97c3e774aa322c820f410.zip
removed KEY_RESIZE
Since we are handling SIGWINCH, we do not need to handle KEY_RESIZE from ncurses. Remove it.
Diffstat (limited to 'src/command.c')
-rw-r--r--src/command.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/command.c b/src/command.c
index af188d19a..b107ba3f0 100644
--- a/src/command.c
+++ b/src/command.c
@@ -398,10 +398,6 @@ my_wgetch(WINDOW *w)
c = wgetch(w);
- /* handle resize event */
- if (c == KEY_RESIZE)
- screen_resize();
-
#ifdef ENABLE_RAW_MODE
/* handle SIGSTOP (Ctrl-Z) */
if (c == 26 || c == 407)