1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-03-05 00:12:49 +01:00

fix(widget_state_manager): add 'updatesEnabled' to PROPERTY_TO_SKIP to avoid empty AdvancedDockArea when restore on init when hidden

This commit is contained in:
2025-11-26 17:08:26 +01:00
committed by Jan Wyzula
parent 73528eef18
commit ac9edd10d9

View File

@@ -21,7 +21,15 @@ from bec_widgets.utils.widget_io import WidgetHierarchy
logger = bec_logger.logger
PROPERTY_TO_SKIP = ["palette", "font", "windowIcon", "windowIconText", "locale", "styleSheet"]
PROPERTY_TO_SKIP = [
"palette",
"font",
"windowIcon",
"windowIconText",
"locale",
"styleSheet",
"updatesEnabled",
]
class WidgetStateManager: