Skip to content
Snippets Groups Projects
Commit f6059852 authored by Van Herck, Walter's avatar Van Herck, Walter
Browse files

bugfix

parent e9a66c87
No related branches found
No related tags found
No related merge requests found
...@@ -78,7 +78,6 @@ void ParticleDistributionItem::updateParameterList() ...@@ -78,7 +78,6 @@ void ParticleDistributionItem::updateParameterList()
QString selected_par = par_prop.value<ComboProperty>().getValue(); QString selected_par = par_prop.value<ComboProperty>().getValue();
QString cached_par = QString cached_par =
getRegisteredProperty(P_CACHED_SELECTED_PARAMETER).toString(); getRegisteredProperty(P_CACHED_SELECTED_PARAMETER).toString();
removeRegisteredProperty(P_DISTRIBUTED_PARAMETER);
ComboProperty updated_prop; ComboProperty updated_prop;
if (childItems().size()>0) { if (childItems().size()>0) {
QStringList par_names = childItems()[0]->getParameterTreeList(); QStringList par_names = childItems()[0]->getParameterTreeList();
...@@ -99,5 +98,5 @@ void ParticleDistributionItem::updateParameterList() ...@@ -99,5 +98,5 @@ void ParticleDistributionItem::updateParameterList()
setRegisteredProperty(P_CACHED_SELECTED_PARAMETER, setRegisteredProperty(P_CACHED_SELECTED_PARAMETER,
updated_prop.getValue()); updated_prop.getValue());
} }
registerProperty(P_DISTRIBUTED_PARAMETER, updated_prop.getVariant()); setRegisteredProperty(P_DISTRIBUTED_PARAMETER, updated_prop.getVariant());
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment