diff --git a/ParaViewCore/ServerManager/Core/vtkSMVectorPropertyTemplate.h b/ParaViewCore/ServerManager/Core/vtkSMVectorPropertyTemplate.h index 973991f040e..90cc04a32e8 100644 --- a/ParaViewCore/ServerManager/Core/vtkSMVectorPropertyTemplate.h +++ b/ParaViewCore/ServerManager/Core/vtkSMVectorPropertyTemplate.h @@ -318,6 +318,13 @@ class vtkSMVectorPropertyTemplate this->Property->Modified(); this->ClearUncheckedElements(); } + else if (this->Property->GetRepeatable()) + { + this->Values.clear(); + this->Initialized = true; + this->Property->Modified(); + this->ClearUncheckedElements(); + } } //---------------------------------------------------------------------------