From bd5ecb3b3bf0b4aa4cf1f72aec860e37490dffc1 Mon Sep 17 00:00:00 2001 From: WarmUpTill Date: Thu, 8 Sep 2022 21:39:59 +0200 Subject: [PATCH] Add "slideshow" to list of supported media sources --- src/utils/utility.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/utility.cpp b/src/utils/utility.cpp index 674eb169..2126dd5d 100644 --- a/src/utils/utility.cpp +++ b/src/utils/utility.cpp @@ -651,7 +651,8 @@ void populateMediaSelection(QComboBox *sel, bool addSelect) reinterpret_cast *>(data); std::string sourceId = obs_source_get_id(source); if (sourceId.compare("ffmpeg_source") == 0 || - sourceId.compare("vlc_source") == 0) { + sourceId.compare("vlc_source") == 0 || + sourceId.compare("slideshow") == 0) { list->push_back(obs_source_get_name(source)); } return true;