diff --git a/DOCS/man/console.rst b/DOCS/man/console.rst index 9bc31619f1fcf..7281a95095bc1 100644 --- a/DOCS/man/console.rst +++ b/DOCS/man/console.rst @@ -100,9 +100,6 @@ Shift+TAB Ctrl+l Clear all log messages from the console. -MBTN_RIGHT - Hide the console. - MBTN_MID Paste text (uses the primary selection on X11 and Wayland). diff --git a/player/lua/console.lua b/player/lua/console.lua index 5e4d3c548a6ab..8bbcd5110b74c 100644 --- a/player/lua/console.lua +++ b/player/lua/console.lua @@ -1777,7 +1777,6 @@ local function get_bindings() { 'ins', handle_ins }, { 'shift+ins', function() paste(false) end }, { 'mbtn_mid', function() paste(false) end }, - { 'mbtn_right', function() set_active(false) end }, { 'left', function() prev_char() end }, { 'ctrl+b', function() page_up_or_prev_char() end }, { 'right', function() next_char() end },