Merge pull request #2313 from aws-lumberyard-dev/AssetBrowserScanFolderFullPathFix

Fixed RootAssetBrowserEntry setting of child AssetBrowserEntries
This commit is contained in:
lumberyard-employee-dm
2021-07-21 09:58:52 -05:00
committed by GitHub
@@ -403,7 +403,7 @@ namespace AzToolsFramework
void RootAssetBrowserEntry::UpdateChildPaths(AssetBrowserEntry* child) const
{
child->m_relativePath = child->m_name;
child->m_fullPath = child->m_name;
child->m_fullPath = m_fullPath / child->m_name;
AssetBrowserEntry::UpdateChildPaths(child);
}