mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-05 13:54:22 -04:00
UI: Always show chapter marker hotkey
This commit is contained in:
@@ -2889,22 +2889,14 @@ void OBSBasic::CreateHotkeys()
|
||||
this);
|
||||
LoadHotkey(splitFileHotkey, "OBSBasic.SplitFile");
|
||||
|
||||
/* Adding chapters is only supported by the native MP4 output */
|
||||
const string_view output_id =
|
||||
obs_output_get_id(outputHandler->fileOutput);
|
||||
if (output_id == "mp4_output") {
|
||||
addChapterHotkey = obs_hotkey_register_frontend(
|
||||
"OBSBasic.AddChapterMarker",
|
||||
Str("Basic.Main.AddChapterMarker"),
|
||||
[](void *, obs_hotkey_id, obs_hotkey_t *,
|
||||
bool pressed) {
|
||||
if (pressed)
|
||||
obs_frontend_recording_add_chapter(
|
||||
nullptr);
|
||||
},
|
||||
this);
|
||||
LoadHotkey(addChapterHotkey, "OBSBasic.AddChapterMarker");
|
||||
}
|
||||
addChapterHotkey = obs_hotkey_register_frontend(
|
||||
"OBSBasic.AddChapterMarker", Str("Basic.Main.AddChapterMarker"),
|
||||
[](void *, obs_hotkey_id, obs_hotkey_t *, bool pressed) {
|
||||
if (pressed)
|
||||
obs_frontend_recording_add_chapter(nullptr);
|
||||
},
|
||||
this);
|
||||
LoadHotkey(addChapterHotkey, "OBSBasic.AddChapterMarker");
|
||||
|
||||
replayBufHotkeys = obs_hotkey_pair_register_frontend(
|
||||
"OBSBasic.StartReplayBuffer",
|
||||
|
||||
Reference in New Issue
Block a user