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

pull/1485/head
Enoc 4 years ago
parent 38e07247a9
commit 4d885efd71

@ -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

Loading…
Cancel
Save