From f8fb58db1f60dce21e50f56e587d89dd52e44bcc Mon Sep 17 00:00:00 2001 From: Ed_ Date: Mon, 23 Feb 2026 18:44:13 -0500 Subject: [PATCH] style(ui): Add no_collapse=True to main Hub windows --- gui.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gui.py b/gui.py index dda12e3..2f24ab1 100644 --- a/gui.py +++ b/gui.py @@ -1797,6 +1797,7 @@ class App: width=420, height=600, no_close=False, + no_collapse=True, ): with dpg.tab_bar(): with dpg.tab(label="Projects"): @@ -1900,6 +1901,7 @@ class App: width=420, height=556, no_close=False, + no_collapse=True, ): with dpg.collapsing_header(label="Provider & Models", default_open=True): dpg.add_text("Provider") @@ -1960,6 +1962,7 @@ class App: width=800, height=1164, no_close=False, + no_collapse=True, ): # History at Top with dpg.child_window(tag="disc_history_section", height=-400, border=True): @@ -2035,6 +2038,7 @@ class App: width=428, height=1164, no_close=False, + no_collapse=True, ): with dpg.tab_bar(): with dpg.tab(label="Comms Log"):