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 1fb3195 commit ee5fdf8Copy full SHA for ee5fdf8
addons/beehave/debug/debugger_tab.gd
@@ -182,7 +182,6 @@ func _on_item_selected(idx: int) -> void:
182
if idx < 0 or idx >= item_list.get_item_count():
183
return
184
185
- # Immediately hide & clear the blackboard when switching trees
186
blackboard_vbox.hide()
187
for child in blackboard_vbox.get_children():
188
child.free()
@@ -199,6 +198,8 @@ func _on_item_selected(idx: int) -> void:
199
198
200
201
func _on_graph_node_selected(node: GraphNode) -> void:
+ for child in blackboard_vbox.get_children():
202
+ child.free()
203
blackboard_vbox.show()
204
blackboard_vbox.add_child(Blackboard.new(Utils.get_frames(), node))
205
0 commit comments