We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a855d1 commit fb07ab0Copy full SHA for fb07ab0
CHANGELOG.md
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
12
### Changed
13
14
+* Fixed bug in `compas_rhino.scene.meshobject.RhinoMeshObject` related to missing object name.
15
+
16
### Removed
17
18
src/compas_rhino/scene/meshobject.py
@@ -135,7 +135,7 @@ def draw(self):
135
self._guids = []
136
137
if self.show_faces is True:
138
- attr = self.compile_attributes()
+ attr = self.compile_attributes(name=self.name)
139
140
vertexcolors = []
141
if len(self.vertexcolor): # type: ignore
0 commit comments