diff options
| author | Michele Bini <michele.bini@gmail.com> | 2022-04-13 18:53:16 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2022-04-13 18:53:16 (GMT) |
| commit | 531c1172a2357d53b214aaf7b29efee47d9b32e5 (patch) | |
| tree | e9c008f13900e1d3c63332a3bbc305754f8ae35c /src/displayapp/screens/NotificationIcon.cpp | |
| parent | 27fa6bba08766831fe143fe5ca13767bedcd9072 (diff) | |
Revert "Sans notification (notification manager retained as it seems to be used by the dfu manager)"ultraredux2
This reverts commit 569e6fea41c13f33ad1374bb80ca489aaf4a7037.
Diffstat (limited to 'src/displayapp/screens/NotificationIcon.cpp')
| -rw-r--r-- | src/displayapp/screens/NotificationIcon.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/displayapp/screens/NotificationIcon.cpp b/src/displayapp/screens/NotificationIcon.cpp new file mode 100644 index 0000000..0e913ae --- /dev/null +++ b/src/displayapp/screens/NotificationIcon.cpp @@ -0,0 +1,10 @@ +#include "displayapp/screens/NotificationIcon.h" +#include "displayapp/screens/Symbols.h" +using namespace Pinetime::Applications::Screens; + +const char* NotificationIcon::GetIcon(bool newNotificationAvailable) { + if (newNotificationAvailable) + return Symbols::info; + else + return ""; +}
\ No newline at end of file |
