diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-24 13:31:36 +0800 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-24 13:31:36 +0800 |
| commit | 01b38be6afbe660e3b9f9e136870a76afb69bf31 (patch) | |
| tree | a18c46b9d8fb0261addeadb89ca2a8ebd22f0ccc /modules/notifications | |
| parent | dashboard: default weather (diff) | |
| download | caelestia-shell-01b38be6afbe660e3b9f9e136870a76afb69bf31.tar.gz caelestia-shell-01b38be6afbe660e3b9f9e136870a76afb69bf31.tar.bz2 caelestia-shell-01b38be6afbe660e3b9f9e136870a76afb69bf31.zip | |
internal: fix binding loops
Diffstat (limited to 'modules/notifications')
| -rw-r--r-- | modules/notifications/Notification.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/notifications/Notification.qml b/modules/notifications/Notification.qml index cc446c9..d8c8ba7 100644 --- a/modules/notifications/Notification.qml +++ b/modules/notifications/Notification.qml @@ -21,7 +21,7 @@ StyledRect { color: root.modelData?.urgency === NotificationUrgency.Critical ? Colours.palette.m3secondaryContainer : Colours.palette.m3surfaceContainer radius: Appearance.rounding.normal implicitWidth: NotifsConfig.sizes.width - implicitHeight: inner.height + implicitHeight: inner.implicitHeight x: NotifsConfig.sizes.width Component.onCompleted: x = 0 |