Updating the ProjectManager Gem validation check to make sure the name isn't empty either

This commit is contained in:
lumberyard-employee-dm
2021-05-28 02:54:54 -05:00
parent 58bad80ffa
commit 3c0c066f88
@@ -25,7 +25,7 @@ namespace O3DE::ProjectManager
bool GemInfo::IsValid() const
{
return !m_path.isEmpty();
return !m_name.isEmpty() && !m_path.isEmpty();
}
QString GemInfo::GetPlatformString(Platform platform)