Updating the ProjectManager Gem validation check to make sure the name isn't empty either
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user