Fwk. Fix missing config name bug

This commit is contained in:
Bjørn Erik Jensen 2018-05-31 07:47:13 +02:00
parent 2bd1bd777c
commit 73c49b4ce9

View File

@ -180,7 +180,7 @@ void PdmUiObjectHandle::expandUiTree(PdmUiTreeOrdering* root, QString uiConfigNa
PdmUiTreeOrdering* child = root->child(cIdx);
if (child->isValid() && !child->ignoreSubTree())
{
expandUiTree(child);
expandUiTree(child, uiConfigName);
}
}
}
@ -207,7 +207,7 @@ void PdmUiObjectHandle::expandUiTree(PdmUiTreeOrdering* root, QString uiConfigNa
uiObj(root->object())->addDefaultUiTreeChildren(root);
if (root->childCount())
{
expandUiTree(root);
expandUiTree(root, uiConfigName);
}
}
}