summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-14 15:33:10 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-14 15:33:10 +0000
commitde4720539ae323be7d25076cd07e02d7b8b1e65e (patch)
tree414ea3ab396c8cf0e9fc1689f2dd7aeb38a4b379
parent82f168a4f657e4026dc3b4a027ad310ac26353bd (diff)
downloadmpv-de4720539ae323be7d25076cd07e02d7b8b1e65e.tar.bz2
mpv-de4720539ae323be7d25076cd07e02d7b8b1e65e.tar.xz
Make '.' key default for framestepping
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13643 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--DOCS/man/en/mplayer.12
-rw-r--r--etc/input.conf2
-rw-r--r--input/input.c1
3 files changed, 3 insertions, 2 deletions
diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1
index dbe757fe84..56d2dd074a 100644
--- a/DOCS/man/en/mplayer.1
+++ b/DOCS/man/en/mplayer.1
@@ -227,7 +227,7 @@ next/\:previous playtree entry in the parent list
next/\:previous alternative source (ASX playlist only)
.IPs "p / SPACE"
Pause movie (any key unpauses).
-.IPs "s"
+.IPs "."
Step forward.
Pressing once will pause movie, every consecutive press will play one frame
and then go into pause mode again (any other key unpauses).
diff --git a/etc/input.conf b/etc/input.conf
index ebd0552841..092a408fd1 100644
--- a/etc/input.conf
+++ b/etc/input.conf
@@ -19,7 +19,7 @@ q quit
ESC quit
ENTER pt_step 1 1
p pause
-s frame_step
+. frame_step
SPACE pause
HOME pt_up_step 1
END pt_up_step -1
diff --git a/input/input.c b/input/input.c
index 951d03583e..420c2fe2de 100644
--- a/input/input.c
+++ b/input/input.c
@@ -276,6 +276,7 @@ static mp_cmd_bind_t def_cmd_binds[] = {
{ { 'p', 0 }, "pause" },
#endif
{ { ' ', 0 }, "pause" },
+ { { '.', 0 }, "frame_step" },
{ { KEY_HOME, 0 }, "pt_up_step 1" },
{ { KEY_END, 0 }, "pt_up_step -1" },
{ { '>', 0 }, "pt_step 1" },