Merge pull request #2314 from aws-lumberyard-dev/CherryPickPR2313

Cherry-Pick: Fixed RootAssetBrowserEntry setting of child AssetBrowserEntries
This commit is contained in:
lumberyard-employee-dm
2021-07-21 09:58:40 -05:00
committed by GitHub
@@ -399,7 +399,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);
}