Please share your used patches - I have also reactivate some old patches

diff --git a/usr/share/lipstick-jolla-home-qt5/notifications/NotificationPreview.qml b/usr/share/lipstick-jolla-home-qt5/notifications/NotificationPreview.qml
index a78ce71..335a02a 100644
--- a/usr/share/lipstick-jolla-home-qt5/notifications/NotificationPreview.qml
+++ b/usr/share/lipstick-jolla-home-qt5/notifications/NotificationPreview.qml
@@ -121,1 +120,1 @@ SystemWindow { 
-    onActiveChanged: if (!active) popupArea.expanded = false
+    onActiveChanged: if (!active) popupArea.expanded = true
@@ -126,7 +126,7 @@ SystemWindow {
         id: outsideArea
 
         anchors.fill: popupArea
-        enabled: false
+        enabled: false  // patch: this is kept disabled because otherwise it's too easy to lose a notification by accident
 
         onPressedOutside: {
             if (popupArea.expanded) {
@@ -181,7 +181,7 @@ SystemWindow {
 
         readonly property int baseX: Theme.paddingSmall
 
-        property bool expanded
+        property bool expanded: true
         property real textOpacity: 0
         property color textColor: down ? palette.highlightColor : palette.primaryColor
         readonly property int displayWidth: transpose ? Math.max(Screen.width, Screen.height/2)
@@ -556,7 +556,7 @@ SystemWindow {
         id: notificationTimer
         property int duration
         paused: running && (popupArea.swipeActive || popupArea.showSwipeHint
-                            || (notificationWindow.state === "showPopup" && popupArea.expanded))
+                            ) // || (notificationWindow.state === "showPopup" && popupArea.expanded))
         PauseAnimation {
             duration: notificationTimer.duration
         }
@@ -720,7 +720,7 @@ SystemWindow {
                 PropertyAction {
                     target: popupArea
                     property: "expanded"
-                    value: false
+                    value: true
                 }
                 NumberAnimation {
                     target: popupArea
1 Like