From 19e1f8053e9a0aabd7e2df86de02aa1aac837e8c Mon Sep 17 00:00:00 2001 From: quadbyte Date: Thu, 7 Aug 2025 21:12:23 -0400 Subject: [PATCH] Bugfix: fix notifications history that I broke by mistake --- Bar/Bar.qml | 1 + shell.qml | 1 + 2 files changed, 2 insertions(+) diff --git a/Bar/Bar.qml b/Bar/Bar.qml index beec488..ab31d3f 100644 --- a/Bar/Bar.qml +++ b/Bar/Bar.qml @@ -18,6 +18,7 @@ import qs.Widgets.SidePanel Scope { id: rootScope + property var shell property alias visible: barRootItem.visible Item { diff --git a/shell.qml b/shell.qml index 26f9726..0c37393 100644 --- a/shell.qml +++ b/shell.qml @@ -58,6 +58,7 @@ Scope { Bar { id: bar + shell: root property var notificationHistoryWin: notificationHistoryLoader.active ? notificationHistoryLoader.item : null }