(#374) Fixed property filter not working when no color results was active

This commit is contained in:
Jacob Støren
2015-08-20 17:50:07 +02:00
parent 81cf711036
commit bbde32af26

View File

@@ -444,7 +444,7 @@ void RimGeoMechView::clampCurrentTimestep()
//--------------------------------------------------------------------------------------------------
bool RimGeoMechView::isTimeStepDependentDataVisible()
{
return this->hasUserRequestedAnimation() && this->cellResult()->hasResult();
return this->hasUserRequestedAnimation() && (this->cellResult()->hasResult() || this->propertyFilterCollection()->hasActiveFilters());
}
//--------------------------------------------------------------------------------------------------