Open the live graph panel, closing any existing panel first (never toggles).
(base: tk.Tk)
| 220 | |
| 221 | |
| 222 | def open_live_panel(base: tk.Tk) -> None: |
| 223 | """Open the live graph panel, closing any existing panel first (never toggles).""" |
| 224 | if _container is not None and _container.winfo_exists(): |
| 225 | _close() |
| 226 | gimmick_initialize(base, "", live=True) |
| 227 | |
| 228 | |
| 229 | def set_panel_title(title: str) -> None: |
nothing calls this directly
no test coverage detected