Skip to content

Commit

Permalink
update selection before retrieving
Browse files Browse the repository at this point in the history
  • Loading branch information
chrxh committed Sep 25, 2023
1 parent 8708deb commit 23372a1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions source/EngineImpl/SimulationControllerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,13 @@ DataDescription _SimulationControllerImpl::getSimulationData()

ClusteredDataDescription _SimulationControllerImpl::getSelectedClusteredSimulationData(bool includeClusters)
{
_worker.updateSelection();
return _worker.getSelectedClusteredSimulationData(includeClusters);
}

DataDescription _SimulationControllerImpl::getSelectedSimulationData(bool includeClusters)
{
_worker.updateSelection();
return _worker.getSelectedSimulationData(includeClusters);
}

Expand Down

0 comments on commit 23372a1

Please sign in to comment.