From a1e8075fba09f3b56ed43ead64cc3e340dd7a059 Mon Sep 17 00:00:00 2001 From: gxalpha Date: Wed, 3 Aug 2022 19:26:10 +0200 Subject: [PATCH] UI: Unregister file splitting hotkey when clearing hotkeys --- UI/window-basic-main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp index 7a7c6755c..f436956c2 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -2606,6 +2606,7 @@ void OBSBasic::ClearHotkeys() obs_hotkey_pair_unregister(streamingHotkeys); obs_hotkey_pair_unregister(recordingHotkeys); obs_hotkey_pair_unregister(pauseHotkeys); + obs_hotkey_unregister(splitFileHotkey); obs_hotkey_pair_unregister(replayBufHotkeys); obs_hotkey_pair_unregister(vcamHotkeys); obs_hotkey_pair_unregister(togglePreviewHotkeys);