From c6802da4779c99bdde028f0294d8a8a1a6d4542a Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Fri, 11 Nov 2022 11:37:44 -0500 Subject: [PATCH] mobileshellstate: Ensure default value for notificationsWidget --- components/mobileshellstate/qml/TopPanelControls.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/mobileshellstate/qml/TopPanelControls.qml b/components/mobileshellstate/qml/TopPanelControls.qml index b9de1d19..aa569a9e 100644 --- a/components/mobileshellstate/qml/TopPanelControls.qml +++ b/components/mobileshellstate/qml/TopPanelControls.qml @@ -23,5 +23,5 @@ QtObject { property bool inSwipe: false property real panelHeight: PlasmaCore.Units.gridUnit + PlasmaCore.Units.smallSpacing // set and updated in panel containment property bool actionDrawerVisible: false - property var notificationsWidget // updated in panel containment + property var notificationsWidget: null // updated in panel containment }