From ec6e505bd1d988a59474cc8bdea796377153ab27 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 9 Jul 2025 19:32:40 +1000 Subject: lock: fix notifs height on startup For some reason they do not have the correct height, so use a timer to recalculate after a small delay --- modules/lock/Status.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/lock/Status.qml b/modules/lock/Status.qml index a803c76..a3a0cac 100644 --- a/modules/lock/Status.qml +++ b/modules/lock/Status.qml @@ -29,6 +29,12 @@ WrapperItem { rightMargin: 0 topMargin: 0 + Timer { + running: true + interval: 10 + onTriggered: notifs.countChanged() + } + Behavior on implicitWidth { Anim { duration: Appearance.anim.durations.large -- cgit v1.2.3-freya