(self, emitter)
| 49 | |
| 50 | @gui.decorate_event |
| 51 | def on_tree_item_selected(self, emitter): |
| 52 | self.select_instance(self, emitter.instance) |
| 53 | return (emitter.instance,) |
| 54 | |
| 55 | def append_instances_from_tree(self, node, parent=None): |
| 56 | if not hasattr(node, 'attributes'): |
nothing calls this directly
no test coverage detected