diff options
author | Ajay <[email protected]> | 2024-09-12 19:44:35 -0400 |
---|---|---|
committer | Ajay <[email protected]> | 2024-09-12 19:44:35 -0400 |
commit | e610e03e46fbf4f5bf86a6f0364bc8ab96f47520 (patch) | |
tree | e606372c44d7af7de1ecf3f521a6f72a1eb893c1 | |
parent | 17cbd068b9decb87256ab96ec84e5a63e10640a9 (diff) | |
download | SponsorBlock-e610e03e46fbf4f5bf86a6f0364bc8ab96f47520.tar.gz SponsorBlock-e610e03e46fbf4f5bf86a6f0364bc8ab96f47520.zip |
Make submission menu keyboard of ff not open find menu
-rw-r--r-- | src/content.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/content.ts b/src/content.ts index 04c2dcd3..cef93488 100644 --- a/src/content.ts +++ b/src/content.ts @@ -2571,6 +2571,8 @@ function hotkeyListener(e: KeyboardEvent): void { submitSegments(); return; } else if (keybindEquals(key, openSubmissionMenuKey)) { + e.preventDefault(); + openSubmissionMenu(); return; } else if (keybindEquals(key, previewKey)) { |