From c6ba12dcfd3380b4773e3e4df8d21d774d6e87fd Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Tue, 29 Mar 2016 23:31:53 +0000
Subject: [PATCH] [PL] ProcessVar: Add n_components for MeshProperty

When creating a new MeshProperty the number of components was not passed
further.
---
 ProcessLib/ProcessVariable.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ProcessLib/ProcessVariable.cpp b/ProcessLib/ProcessVariable.cpp
index a4d27775f2b..52a39d24565 100644
--- a/ProcessLib/ProcessVariable.cpp
+++ b/ProcessLib/ProcessVariable.cpp
@@ -145,7 +145,7 @@ MeshLib::PropertyVector<double>& ProcessVariable::getOrCreateMeshProperty()
     else
     {
         result = _mesh.getProperties().template createNewPropertyVector<double>(
-            _name, MeshLib::MeshItemType::Node);
+            _name, MeshLib::MeshItemType::Node, _n_components);
         assert(result);
         result->resize(_mesh.getNumberOfNodes() * _n_components);
     }
-- 
GitLab