UI: Fix Copy/Paste not including blend mode

This commit is contained in:
jp9000
2021-12-28 09:12:51 -08:00
parent 2364dfd0ef
commit 213712dfe5
3 changed files with 16 additions and 7 deletions

View File

@@ -9064,6 +9064,7 @@ void OBSBasic::on_actionCopySource_triggered()
copyInfo.weak_source = OBSGetWeakRef(source);
obs_sceneitem_get_info(item, &copyInfo.transform);
obs_sceneitem_get_crop(item, &copyInfo.crop);
copyInfo.blend = obs_sceneitem_get_blending_mode(item);
copyInfo.visible = obs_sceneitem_visible(item);
clipboard.push_back(copyInfo);