diff options
author | Julian <MyFakeAcc.4@googlemail.com> | 2017-07-03 17:27:03 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2017-10-09 20:40:32 +0200 |
commit | b93efd0a52daa7d4204c040b904fec4d99abcc36 (patch) | |
tree | 131c23ea0cf58b94c21921636b796bb487882b0c /player/lua | |
parent | 6c7aae769a4dfa387426be19b7c525ab666b960e (diff) |
stats: make page keybinding repeatable
There's no reason it's not.
Diffstat (limited to 'player/lua')
-rw-r--r-- | player/lua/stats.lua | 2 |
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 |