summaryrefslogtreecommitdiff
path: root/modules/lock/NotifDock.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-11 23:40:33 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-11 23:40:33 +1000
commitfa5546cf350e3263157e5888552afed4ce316d10 (patch)
treeaf4f9890c6803d0e1b990efb2341da3faf162853 /modules/lock/NotifDock.qml
parentlock/notifs: add empty placeholder (diff)
downloadcaelestia-shell-fa5546cf350e3263157e5888552afed4ce316d10.tar.gz
caelestia-shell-fa5546cf350e3263157e5888552afed4ce316d10.tar.bz2
caelestia-shell-fa5546cf350e3263157e5888552afed4ce316d10.zip
lock/notifs: don't show notifs until anim finish
Cause layout calculations are slow
Diffstat (limited to 'modules/lock/NotifDock.qml')
-rw-r--r--modules/lock/NotifDock.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/lock/NotifDock.qml b/modules/lock/NotifDock.qml
index 8594d8a..5fde1a8 100644
--- a/modules/lock/NotifDock.qml
+++ b/modules/lock/NotifDock.qml
@@ -84,7 +84,7 @@ ColumnLayout {
clip: true
model: ScriptModel {
- values: [...new Set(Notifs.list.map(notif => notif.appName))].reverse()
+ values: root.lock.animating ? [] : [...new Set(Notifs.list.map(notif => notif.appName))].reverse()
}
delegate: NotifGroup {}