summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-06 21:59:24 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-06 21:59:24 +0000
commit6662c6b1fca8459bba24c9359cd4a8ca1c4006ad (patch)
treecdef65b51812bace1545bc173e4d212a194c481f /input
parent381ba84b9e68eeb03f55f165de8b096f3b028f37 (diff)
downloadmpv-6662c6b1fca8459bba24c9359cd4a8ca1c4006ad.tar.bz2
mpv-6662c6b1fca8459bba24c9359cd4a8ca1c4006ad.tar.xz
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
Diffstat (limited to 'input')
-rw-r--r--input/input.c2
1 files changed, 2 insertions, 0 deletions
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" },