提交 a94c0e05 编写于 作者: S Scratch 提交者: Jim

UI: Prevent disabling replay buffer if it's active

上级 a1c3fbee
......@@ -4458,9 +4458,13 @@ void OBSBasicSettings::UpdateAutomaticReplayBufferCheckboxes()
switch (ui->outputMode->currentIndex()) {
case 0:
state = ui->simpleReplayBuf->isChecked();
ui->simpleReplayBuf->setEnabled(
!obs_frontend_replay_buffer_active());
break;
case 1:
state = ui->advReplayBuf->isChecked();
ui->advReplayBuf->setEnabled(
!obs_frontend_replay_buffer_active());
break;
}
ui->replayWhileStreaming->setEnabled(state);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册