diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-18 23:26:49 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-18 23:26:49 +1000 |
| commit | b0a0b6d322189fa6fe4a7389fa42cb8d5a6156ab (patch) | |
| tree | 1d278d99314992c6d47f49ac8813167392d108f9 /services/Notifs.qml | |
| parent | launcher: fix opening apps (diff) | |
| download | caelestia-shell-b0a0b6d322189fa6fe4a7389fa42cb8d5a6156ab.tar.gz caelestia-shell-b0a0b6d322189fa6fe4a7389fa42cb8d5a6156ab.tar.bz2 caelestia-shell-b0a0b6d322189fa6fe4a7389fa42cb8d5a6156ab.zip | |
notifs: fix material icon offset
Diffstat (limited to 'services/Notifs.qml')
| -rw-r--r-- | services/Notifs.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/Notifs.qml b/services/Notifs.qml index 73d98a2..2ccb8a6 100644 --- a/services/Notifs.qml +++ b/services/Notifs.qml @@ -75,7 +75,7 @@ Singleton { readonly property string appIcon: notification.appIcon readonly property string appName: notification.appName readonly property string image: notification.image - readonly property var urgency: notification.urgency // Idk why NotificationUrgency doesn't work + readonly property int urgency: notification.urgency readonly property list<NotificationAction> actions: notification.actions readonly property Timer timer: Timer { |