From 4722b764cad77d5447331f1f45e8203b02ffbdb2 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Tue, 19 Feb 2019 19:27:54 -0800 Subject: [PATCH] UI: Set replay buffer check w/ --startreplaybuffer When starting the program with the --startreplaybuffer command line parameter, it would not correctly highlight the button. --- 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 617a256bd..7ce6463e2 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -5365,6 +5365,7 @@ void OBSBasic::ReplayBufferStart() return; replayBufferButton->setText(QTStr("Basic.Main.StopReplayBuffer")); + replayBufferButton->setChecked(true); if (sysTrayReplayBuffer) sysTrayReplayBuffer->setText(replayBufferButton->text()); -- GitLab