UI: Remove unnecessary shared_ptr allocations

Not sure why these were separate allocations -- the data will be
preserved just fine when copying the structure without being separate
allocations
This commit is contained in:
jp9000
2021-12-28 08:34:40 -08:00
parent 0c4b3816de
commit 2364dfd0ef
3 changed files with 5 additions and 8 deletions

View File

@@ -431,6 +431,5 @@ void OBSBasicSourceSelect::SourcePaste(SourceCopyInfo &info, bool dup)
if (!source)
return;
AddExisting(source, info.visible, dup, info.transform.get(),
info.crop.get());
AddExisting(source, info.visible, dup, &info.transform, &info.crop);
}