From da87eff96f1ba7a2f41c31a8bc40457461f9c63b Mon Sep 17 00:00:00 2001 From: SuslikV Date: Wed, 20 Feb 2019 18:09:39 +0200 Subject: [PATCH] UI: Reset replay buffer button on "stop" signal Fixes an issue when Start Replay Button stays at checked state if stop signal generated (hotkey event for example) instead of mouse click. Mantis: https://obsproject.com/mantis/view.php?id=1343 --- 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 7ce6463e2..86a78ef98 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -5399,6 +5399,7 @@ void OBSBasic::ReplayBufferStop(int code) return; replayBufferButton->setText(QTStr("Basic.Main.StartReplayBuffer")); + replayBufferButton->setChecked(false); if (sysTrayReplayBuffer) sysTrayReplayBuffer->setText(replayBufferButton->text());