mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
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:
@@ -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).
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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" },
|
||||
|
||||
Reference in New Issue
Block a user