Skip to content

Commit b9ba798

Browse files
committed
bug fix
1 parent 043125b commit b9ba798

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
* Fixed bug in `compas_rhino.scene.RhinoMeshObject.clear()`.
15+
1416
### Removed
1517

1618

src/compas_rhino/scene/meshobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def clear(self):
7474
7575
"""
7676
compas_rhino.objects.delete_objects(self.guids, purge=True)
77-
self.guids = []
77+
self._guids = []
7878

7979
def clear_vertices(self):
8080
"""Delete all vertices drawn by this scene object.

0 commit comments

Comments
 (0)