Make '.' key default for framestepping

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13643 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar
2004-10-14 15:33:10 +00:00
parent 82f168a4f6
commit de4720539a
3 changed files with 3 additions and 2 deletions

View File

@@ -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).

View File

@@ -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

View File

@@ -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" },