Browse Source

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.
gxalpha 4 years ago
parent
commit
6f778df158
1 changed files with 1 additions and 0 deletions
  1. 1 0
      UI/window-remux.cpp

+ 1 - 0
UI/window-remux.cpp

@@ -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;
 	}