feat(bar/animations): add scale animation on apps button, fade animation on ws numbers

This commit is contained in:
retrozinndev
2025-03-25 15:58:27 -03:00
parent e2e84c93b5
commit 77ab94a723
6 changed files with 70 additions and 29 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ export const NotifHistory: Gtk.Widget = new Widget.Box({
valign: Gtk.Align.START,
children: bind(Notifications.getDefault(), "history").as((history: Array<HistoryNotification>) =>
history.map((notification: HistoryNotification) => NotificationWidget(notification,
() => Notifications.getDefault().removeHistory(notification.id))
() => Notifications.getDefault().removeHistory(notification.id), true)
))
} as Widget.BoxProps)
} as Widget.ScrollableProps),