From 69b5c54c75ba598391b35f46eb75df0b31361d11 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Thu, 28 Mar 2019 16:14:57 +0000 Subject: [PATCH] ENH: Mesh name can be updated --- fsl/data/mesh.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fsl/data/mesh.py b/fsl/data/mesh.py index 55b996069..f5ca20ade 100644 --- a/fsl/data/mesh.py +++ b/fsl/data/mesh.py @@ -241,6 +241,12 @@ class Mesh(notifier.Notifier, meta.Meta): return self.__name + @name.setter + def name(self, name): + """Set the name of this ``Mesh``. """ + self.__name = name + + @property def dataSource(self): """Returns the data source of this ``Mesh``. """ -- GitLab