summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-02-07 14:05:04 +0100
committerwm4 <wm4@nowhere>2020-02-07 14:05:04 +0100
commitc48fd48f1e39ebd6a6ef793916284d64ce2d2abc (patch)
tree4fd626bd15e8f976df70205138b770a22542dc74 /player
parentf659cfd6e38ad9dffad856f96d9406b83eb3aaa1 (diff)
downloadmpv-c48fd48f1e39ebd6a6ef793916284d64ce2d2abc.tar.bz2
mpv-c48fd48f1e39ebd6a6ef793916284d64ce2d2abc.tar.xz
console: fix typo in previous commit
Now keypad enter actually works.
Diffstat (limited to 'player')
-rw-r--r--player/lua/console.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/lua/console.lua b/player/lua/console.lua
index 3a263d6e45..581967e175 100644
--- a/player/lua/console.lua
+++ b/player/lua/console.lua
@@ -653,7 +653,7 @@ end
local bindings = {
{ 'esc', function() set_active(false) end },
{ 'enter', handle_enter },
- { 'kp_enter', hanmdle_enter },
+ { 'kp_enter', handle_enter },
{ 'shift+enter', function() handle_char_input('\n') end },
{ 'bs', handle_backspace },
{ 'shift+bs', handle_backspace },