Merge pull request 'fix(ui): rebalance Auth/Activity dock panel sizes (#190, #191)' (#242) from fix/panel-layout-balance into main
Some checks failed
Build and Test / build (push) Has been cancelled

Reviewed-on: #242
This commit was merged in pull request #242.
This commit is contained in:
2026-02-15 15:52:15 +00:00

View File

@@ -154,6 +154,11 @@ def _setup_silo_activity_panel():
panel.setWidget(widget)
mw.addDockWidget(QtCore.Qt.RightDockWidgetArea, panel)
# Give the activity panel most of the vertical space
auth_panel = mw.findChild(QtWidgets.QDockWidget, "SiloDatabaseAuth")
if auth_panel:
mw.resizeDocks([auth_panel, panel], [120, 500], QtCore.Qt.Vertical)
except Exception as e:
FreeCAD.Console.PrintLog(f"Create: Silo activity panel skipped: {e}\n")