1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-12-30 18:51:19 +01:00

fix: disable stylesheet

This commit is contained in:
2025-09-12 19:06:45 +02:00
committed by Klaus Wakonig
parent 60de7263b0
commit f2df07e307
2 changed files with 2 additions and 0 deletions

View File

@@ -67,6 +67,7 @@ class DeveloperView(BECWidget, QWidget):
self._root_layout.addWidget(self.toolbar)
self.dock_manager = CDockManager(self)
self.dock_manager.setStyleSheet("")
self._root_layout.addWidget(self.dock_manager)
# Initialize the widgets

View File

@@ -34,6 +34,7 @@ class MonacoDock(BECWidget, QWidget):
self._root_layout.setSpacing(0)
self.dock_manager = QtAds.CDockManager(self)
self.dock_manager.setStyleSheet("")
self.dock_manager.focusedDockWidgetChanged.connect(self._on_focus_event)
self._root_layout.addWidget(self.dock_manager)
self.dock_manager.installEventFilter(self)