(self, context)
| 424 | bl_description = "Copies debugging information to your clipboard for use in bugreports" |
| 425 | |
| 426 | def execute(self, context): |
| 427 | info = get_debug_info(bonsai_failed_to_load=True) |
| 428 | info.update(get_binary_info()) |
| 429 | info = format_debug_info(info) |
| 430 | context.window_manager.clipboard = info |
| 431 | return {"FINISHED"} |
| 432 | |
| 433 | class HiddenPanel: |
| 434 | @classmethod |
nothing calls this directly
no test coverage detected