UI: Fix scene collection importer OS translation

The OS translation in the Scene Collection Importer seems to have been
broken since the feature was added because the translated sources were
not added back to the output JSON object. Add the translated sources to
the output JSON object to get the feature to work.
This commit is contained in:
Ryan Foster 2021-05-14 04:24:48 -04:00 committed by Jim
parent e1580d12fb
commit 183fb20dde

View File

@ -143,6 +143,7 @@ void TranslateOSStudio(Json &res)
#undef ClearTranslation
}
out["sources"] = sources;
res = out;
}