MCPcopy Index your code
hub / github.com/srixivas/PcapXray / open_live_panel

Function open_live_panel

Source/Module/interactive_gui.py:222–226  ·  view source on GitHub ↗

Open the live graph panel, closing any existing panel first (never toggles).

(base: tk.Tk)

Source from the content-addressed store, hash-verified

220
221
222def 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
229def set_panel_title(title: str) -> None:

Callers

nothing calls this directly

Calls 2

_closeFunction · 0.85
gimmick_initializeFunction · 0.85

Tested by

no test coverage detected