From 6662c6b1fca8459bba24c9359cd4a8ca1c4006ad Mon Sep 17 00:00:00 2001 From: arpi Date: Wed, 6 Mar 2002 21:59:24 +0000 Subject: KEY_ENTER->quit binding. why doesn't 'pt_step 1' exits if no more file left? git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4957 b3059339-0415-0410-9bf9-f77b7e298cf2 --- input/input.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'input/input.c') diff --git a/input/input.c b/input/input.c index 6b9c84c2a5..be4e0f698d 100644 --- a/input/input.c +++ b/input/input.c @@ -149,11 +149,13 @@ static mp_cmd_bind_t def_cmd_binds[] = { { { '-', 0 }, "audio_delay -0.100" }, { { 'q', 0 }, "quit" }, { { KEY_ESC, 0 }, "quit" }, + { { KEY_ENTER, 0 }, "quit" }, // { { 'p', 0 }, "pause" }, { { ' ', 0 }, "pause" }, { { KEY_HOME, 0 }, "pt_up_step 1" }, { { KEY_END, 0 }, "pt_up_step -1" }, { { '>', 0 }, "pt_step 1" }, +// { { KEY_ENTER, 0 }, "pt_step 1" }, { { '<', 0 }, "pt_step -1" }, { { KEY_INS, 0 }, "alt_src_step 1" }, { { KEY_DEL, 0 }, "alt_src_step -1" }, -- cgit v1.2.3