Added lap recap graphs and loading

This commit is contained in:
2026-05-20 19:30:13 +02:00
parent 91d841cf1c
commit 8f5ecf6d60
8 changed files with 203 additions and 12 deletions

View File

@@ -24,6 +24,7 @@ def update_window_lora_connection_menu_combo(state: AppState) -> None:
if port_name in ports:
ports.remove(port_name)
dpg.configure_item(WINDOW_LORA_CONNECTION_MENU_COMBO, items=ports)
dpg.set_value(WINDOW_LORA_CONNECTION_MENU_COMBO, "")
def update_window_serial_connection_menu_combo(state: AppState) -> None:
@@ -34,6 +35,7 @@ def update_window_serial_connection_menu_combo(state: AppState) -> None:
if port_name in ports:
ports.remove(port_name)
dpg.configure_item(WINDOW_SERIAL_CONNECTION_MENU_COMBO, items=ports)
dpg.set_value(WINDOW_SERIAL_CONNECTION_MENU_COMBO, "")
def hide_all_but(tag: str) -> None: