Firefox accessibility.typeaheadfind is triggered for multikey shortcuts.
For multikey shortcuts Firefox accessibility.typeaheadfind is triggered. Returning false will cause the default event from occuring and prevent the event from bubbling up.
This commit is contained in:
parent
9a6c4b7033
commit
d7e4897b8e
1 changed files with 1 additions and 1 deletions
|
@ -892,7 +892,7 @@ function hotkey_handler(e) {
|
|||
cmdline.innerHTML = keychar;
|
||||
Element.show(cmdline);
|
||||
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
Element.hide(cmdline);
|
||||
|
|
Loading…
Reference in a new issue