mirror of https://github.com/mpv-player/mpv
input: don't autorepeat cycle_values command
Not sure why this was originally added as autorepeated. It makes no sense, because switching between choices should never autorepeat. (For the normal "add"/"cycle" commands, autorepeat is usually enabled, but command.c tries to disable it specifically for choice properties.)
This commit is contained in:
parent
a3b393d68c
commit
b0a3d38b4c
|
@ -141,7 +141,7 @@ const struct mp_cmd_def mp_cmds[] = {
|
|||
.allow_auto_repeat = true},
|
||||
|
||||
{ MP_CMD_CYCLE_VALUES, "cycle_values", { ARG_STRING, ARG_STRING, ARG_STRING },
|
||||
.vararg = true, .allow_auto_repeat = true},
|
||||
.vararg = true},
|
||||
|
||||
{ MP_CMD_ENABLE_INPUT_SECTION, "enable_section", {
|
||||
ARG_STRING,
|
||||
|
|
Loading…
Reference in New Issue