Skip to content

Commit

Permalink
Remove unused unacknowledgedAlarmsModel
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeTrahearn-Qinetic committed Jan 13, 2025
1 parent 91ad16a commit 8ae761b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions data/Notifications.qml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ QtObject {
filterFunction: (notification) => { return !notification.active && notification.acknowledged }
sortFunction: root._notificationSortFunction
}
readonly property NotificationSortFilterProxyModel unacknowledgedAlarmsModel: NotificationSortFilterProxyModel {
sourceModel: allNotificationsModel
filterFunction: (notification) => { return notification.type === VenusOS.Notification_Alarm && !notification.acknowledged }
sortFunction: root._notificationSortFunction
}
readonly property NotificationSortFilterProxyModel activeAlarmsAndWarningsModel: NotificationSortFilterProxyModel {
sourceModel: allNotificationsModel
filterFunction: (notification) => { return (notification.type === VenusOS.Notification_Alarm ||
Expand Down

0 comments on commit 8ae761b

Please sign in to comment.