Added preventDefault to contextual help key press listener

This commit is contained in:
n1474335 2023-03-22 16:54:39 +00:00
parent 84aad167d5
commit c2171a08f2
1 changed files with 1 additions and 0 deletions

View File

@ -151,6 +151,7 @@ class BindingsWaiter {
} else {
switch (e.code) {
case "F1":
e.preventDefault();
this.contextualHelp();
break;
}