summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorJulian <MyFakeAcc.4@googlemail.com>2017-07-03 17:27:03 +0200
committerwm4 <wm4@nowhere>2017-10-09 20:40:32 +0200
commitb93efd0a52daa7d4204c040b904fec4d99abcc36 (patch)
tree131c23ea0cf58b94c21921636b796bb487882b0c /player
parent6c7aae769a4dfa387426be19b7c525ab666b960e (diff)
downloadmpv-b93efd0a52daa7d4204c040b904fec4d99abcc36.tar.bz2
mpv-b93efd0a52daa7d4204c040b904fec4d99abcc36.tar.xz
stats: make page keybinding repeatable
There's no reason it's not.
Diffstat (limited to 'player')
-rw-r--r--player/lua/stats.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/lua/stats.lua b/player/lua/stats.lua
index e7bce8c458..ef4bd2a9b9 100644
--- a/player/lua/stats.lua
+++ b/player/lua/stats.lua
@@ -544,7 +544,7 @@ local function add_page_bindings()
end
for k, _ in pairs(pages) do
- mp.add_forced_key_binding(k, k, a(k), {repeatable=false})
+ mp.add_forced_key_binding(k, k, a(k), {repeatable=true})
end
end