Add keybind for closing skip notices

Fixes #1915
This commit is contained in:
Ajay
2023-12-22 11:48:21 -05:00
parent 157216148c
commit 8496e32cfe
5 changed files with 19 additions and 4 deletions

View File

@@ -2458,6 +2458,7 @@ function hotkeyListener(e: KeyboardEvent): void {
const skipKey = Config.config.skipKeybind;
const skipToHighlightKey = Config.config.skipToHighlightKeybind;
const closeSkipNoticeKey = Config.config.closeSkipNoticeKeybind;
const startSponsorKey = Config.config.startSponsorKeybind;
const submitKey = Config.config.actuallySubmitKeybind;
const openSubmissionMenuKey = Config.config.submitKeybind;
@@ -2475,6 +2476,12 @@ function hotkeyListener(e: KeyboardEvent): void {
skipButtonControlBar.toggleSkip.call(skipButtonControlBar);
}
return;
} else if (keybindEquals(key, closeSkipNoticeKey)) {
for (let i = 0; i < skipNotices.length; i++) {
skipNotices.pop().close();
}
return;
} else if (keybindEquals(key, startSponsorKey)) {
startOrEndTimingNewSegment();