File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717* Fixed error in ` circle_to_compas ` from Rhino.
1818* Fixed Rhino to Rhino brep serialization.
1919* Upated ` compas.scene.Group.add() ` to pass on group kwargs as default for child items.
20+ * Fixed bug in context detection, which wrongly defaults to ` Viewer ` instead of ` None ` .
2021
2122### Removed
2223
Original file line number Diff line number Diff line change @@ -112,9 +112,9 @@ def detect_current_context():
112112 return "Rhino"
113113 if compas .is_blender ():
114114 return "Blender"
115- other_contexts = [v for v in ITEM_SCENEOBJECT .keys ()]
116- if other_contexts :
117- return other_contexts [0 ]
115+ # other_contexts = [v for v in ITEM_SCENEOBJECT.keys()]
116+ # if other_contexts:
117+ # return other_contexts[0]
118118
119119 return None
120120
You can’t perform that action at this time.
0 commit comments