You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes issue where no video capture devices selected for merge, and issue where protection flagged exports would not import correctly even when logged in.
msgBox.setText("This scene collection file contains portions of a scene collection purchased on the Elgato Marketplace. To install it, you will need to be logged in to the original account that purchased the collection. Please log in through the Elgato Marketplace menu item, and try to install again.");
272
+
msgBox.setIcon(QMessageBox::Information);
273
+
msgBox.setStandardButtons(QMessageBox::Close);
274
+
msgBox.exec();
275
+
returnfalse;
276
+
}
277
+
id = embeddedId;
278
+
}
279
+
260
280
// Code to swap out video capture devices in _collection,
261
281
// with source clones if needed.
262
282
263
283
for (auto& source : _collection["sources"]) {
264
284
if (source["id"] == "dshow_input") {
285
+
// If the user did not select a video device for this
286
+
// source.. continue
287
+
if (!source["settings"].contains("video_device_id")) {
msgBox.setText("This scene collection file contains portions of a scene collection purchased on the Elgato Marketplace. To install it, you will need to be logged in to the original account that purchased the collection. Please log in through the Elgato Marketplace menu item, and try to install again.");
0 commit comments