()
| 408 | |
| 409 | # Function to populate tabs in the background |
| 410 | def populate_tabs_background(): |
| 411 | for tab_name in tab_groups.keys(): |
| 412 | # Schedule each tab to be populated with a small delay between them |
| 413 | window.after(100, lambda name=tab_name: populate_tab(name)) |
| 414 | |
| 415 | # Start populating tabs in the background after a short delay |
| 416 | window.after(500, populate_tabs_background) |
nothing calls this directly
no test coverage detected
searching dependent graphs…