From 06745e0511d3ad4e261119118c7767f92bd884a5 Mon Sep 17 00:00:00 2001 From: wyzula-jan Date: Wed, 7 Jan 2026 17:50:03 +0100 Subject: [PATCH] fix(main_app): dock area from main app shares the workspace name with the CLI one to reuse the profiles created in the cli companion window --- bec_widgets/applications/main_app.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bec_widgets/applications/main_app.py b/bec_widgets/applications/main_app.py index 1157e32b..06e9a600 100644 --- a/bec_widgets/applications/main_app.py +++ b/bec_widgets/applications/main_app.py @@ -45,9 +45,7 @@ class BECMainApp(BECMainWindow): def _add_views(self): self.add_section("BEC Applications", "bec_apps") - self.ads = AdvancedDockArea( - self, profile_namespace="main_workspace", auto_profile_namespace=False - ) + self.ads = AdvancedDockArea(self, profile_namespace="bec", auto_profile_namespace=False) self.ads.setObjectName("MainWorkspace") self.device_manager = DeviceManagerView(self) self.developer_view = DeveloperView(self)