UI: Show autoremux progress bar

Fixes a bug where the progress bar for autoremuxes wouldn't be made
visible when it started, and only a blank popup window appeared.
This commit is contained in:
gxalpha 2021-08-07 23:41:17 +02:00 committed by Jim
parent 3e16296403
commit 6f778df158

View File

@ -864,6 +864,7 @@ void OBSRemux::beginRemux()
void OBSRemux::AutoRemux(QString inFile, QString outFile)
{
if (inFile != "" && outFile != "" && autoRemux) {
ui->progressBar->setVisible(true);
emit remux(inFile, outFile);
autoRemuxFile = outFile;
}