Explorar el Código

UI: Don't draw bounding boxes for sources without video flag

Audio Input or Output, for instance, don't have the OBS_SOURCE_VIDEO
output flag so there is no need to draw the compositing helper bounding
boxes.
Shaolin hace 8 años
padre
commit
679a731964
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      UI/window-basic-preview.cpp

+ 3 - 0
UI/window-basic-preview.cpp

@@ -1105,6 +1105,9 @@ bool OBSBasicPreview::DrawSelectedItem(obs_scene_t *scene,
 	if (obs_sceneitem_locked(item))
 		return true;
 
+	if (!SceneItemHasVideo(item))
+		return true;
+
 	if (!obs_sceneitem_selected(item))
 		return true;