From 0b212c31005fbfb1ff318ef28ca67897a6b09719 Mon Sep 17 00:00:00 2001 From: wyzula-jan Date: Tue, 27 Jan 2026 14:33:37 +0100 Subject: [PATCH] fix(main_window): parent fixed for notification broker --- bec_widgets/widgets/containers/main_window/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bec_widgets/widgets/containers/main_window/main_window.py b/bec_widgets/widgets/containers/main_window/main_window.py index 2878d268..55fdf1f1 100644 --- a/bec_widgets/widgets/containers/main_window/main_window.py +++ b/bec_widgets/widgets/containers/main_window/main_window.py @@ -54,7 +54,7 @@ class BECMainWindow(BECWidget, QMainWindow): # Notification Centre overlay self.notification_centre = NotificationCentre(parent=self) # Notification layer - self.notification_broker = BECNotificationBroker() + self.notification_broker = BECNotificationBroker(parent=self) self._nc_margin = 16 self._position_notification_centre()