Fixed a bug in the ReflectedPropertyError that was preventing groups from opening correctly

Signed-off-by: Jose <jotamkin@amazon.com>
This commit is contained in:
Jose
2021-07-07 15:12:43 -05:00
parent 36dee3d492
commit e18bcc63f2
@@ -1028,26 +1028,6 @@ namespace AzToolsFramework
pWidget->UpdateIndicator(m_impl->m_indicatorQueryFunction(pWidget->GetNode()));
}
}
for (auto it = m_impl->m_specialGroupWidgets.begin(); it != m_impl->m_specialGroupWidgets.end(); ++it)
{
PropertyRowWidget* pWidget = it->second;
QWidget* childWidget = pWidget->GetChildWidget();
if (pWidget->GetHandler() && childWidget)
{
pWidget->GetHandler()->ConsumeAttributes_Internal(childWidget, it->first);
pWidget->GetHandler()->ReadValuesIntoGUI_Internal(childWidget, it->first);
pWidget->OnValuesUpdated();
}
pWidget->RefreshAttributesFromNode(false);
if (m_impl->m_indicatorQueryFunction)
{
pWidget->UpdateIndicator(m_impl->m_indicatorQueryFunction(pWidget->GetNode()));
}
}
}
void ReflectedPropertyEditor::InvalidateValues()