diff options
| author | Jean-François Milants <jf@codingfield.com> | 2021-04-09 18:50:09 (GMT) |
|---|---|---|
| committer | Jean-François Milants <jf@codingfield.com> | 2021-04-09 18:50:09 (GMT) |
| commit | 57b4c3f0edc6acfa31bd2160abdcd6091920ba63 (patch) | |
| tree | 5e6ecdccb6d97f2ab22a1f752c84f160b72f7950 | |
| parent | 4560e9ed60aeacbd7d1c7c1221fe8fdc4d1bb130 (diff) | |
Fix display of empty notification.
| -rw-r--r-- | src/displayapp/screens/Notifications.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/Notifications.cpp b/src/displayapp/screens/Notifications.cpp index 2fac6ac..33cebe8 100644 --- a/src/displayapp/screens/Notifications.cpp +++ b/src/displayapp/screens/Notifications.cpp @@ -26,7 +26,7 @@ Notifications::Notifications(DisplayApp *app, alertNotificationService); validDisplay = true; } else { - currentItem = std::make_unique<NotificationItem>("\nNotification", + currentItem = std::make_unique<NotificationItem>("Notification", "No notification to display", 0, notification.category, |
