(#648) Fixed missing update of total cell visibility

This commit is contained in:
Jacob Støren 2015-11-12 12:24:05 +01:00
parent 8283f6665b
commit 83d1c0c411

View File

@ -31,6 +31,7 @@
#include "cvfViewport.h"
#include <limits.h>
#include "RimPropertyFilterCollection.h"
namespace caf {
@ -240,6 +241,10 @@ void RimView::setCurrentTimeStep(int frameIndex)
clampCurrentTimestep();
this->hasUserRequestedAnimation = true;
if (this->propertyFilterCollection() && this->propertyFilterCollection()->hasActiveDynamicFilters())
{
m_currentReservoirCellVisibility = NULL;
}
this->updateCurrentTimeStep();
}
//--------------------------------------------------------------------------------------------------