Przeglądaj źródła

UI: Fix disabling "resize output to source"

This should always be disabled if video output is active.  Additionally,
the expression used to determine whether it should be enabled/disabled
was very unreadable.
jp9000 6 lat temu
rodzic
commit
103bec6526
1 zmienionych plików z 1 dodań i 4 usunięć
  1. 1 4
      UI/window-basic-main.cpp

+ 1 - 4
UI/window-basic-main.cpp

@@ -4361,10 +4361,7 @@ void OBSBasic::CreateSourcePopupMenu(int idx, bool preview)
 		int width = obs_source_get_width(source);
 		int height = obs_source_get_height(source);
 
-		resizeOutput->setEnabled(!(ui->streamButton->isChecked() ||
-				ui->recordButton->isChecked() ||
-				(replayBufferButton &&
-				replayBufferButton->isChecked())));
+		resizeOutput->setEnabled(!obs_video_active());
 
 		if (width == 0 || height == 0)
 			resizeOutput->setEnabled(false);