Do not show shortcut help when typing '?' in the search box

This commit is contained in:
Enoc 2021-02-20 01:12:26 -06:00
parent 38e07247a9
commit 4d885efd71

View file

@ -37,7 +37,7 @@ class app.Shortcuts
return
onKeypress: (event) =>
return if @buggyEvent(event)
return if @buggyEvent(event) or (event.charCode == 63 and document.activeElement.tagName == 'INPUT')
unless event.ctrlKey or event.metaKey
result = @handleKeypressEvent event
event.preventDefault() if result is false