From fa1af55a45fb277db71b6654ebe610a4d1bc7961 Mon Sep 17 00:00:00 2001 From: Victor Kareh Date: Mon, 12 Feb 2024 10:08:40 -0500 Subject: [PATCH] Alarm: Replace clock icon with bell --- src/displayapp/fonts/fonts.json | 2 +- src/displayapp/screens/Alarm.h | 2 +- src/displayapp/screens/Symbols.h | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/displayapp/fonts/fonts.json b/src/displayapp/fonts/fonts.json index 57341245..a3132504 100644 --- a/src/displayapp/fonts/fonts.json +++ b/src/displayapp/fonts/fonts.json @@ -7,7 +7,7 @@ }, { "file": "FontAwesome5-Solid+Brands+Regular.woff", - "range": "0xf294, 0xf242, 0xf54b, 0xf21e, 0xf1e6, 0xf017, 0xf129, 0xf03a, 0xf185, 0xf560, 0xf001, 0xf3fd, 0xf1fc, 0xf45d, 0xf59f, 0xf5a0, 0xf027, 0xf028, 0xf6a9, 0xf04b, 0xf04c, 0xf048, 0xf051, 0xf095, 0xf3dd, 0xf04d, 0xf2f2, 0xf024, 0xf252, 0xf569, 0xf06e, 0xf015, 0xf00c, 0xf522, 0xf743" + "range": "0xf294, 0xf242, 0xf54b, 0xf21e, 0xf1e6, 0xf017, 0xf129, 0xf03a, 0xf185, 0xf560, 0xf001, 0xf3fd, 0xf1fc, 0xf45d, 0xf59f, 0xf5a0, 0xf027, 0xf028, 0xf6a9, 0xf04b, 0xf04c, 0xf048, 0xf051, 0xf095, 0xf3dd, 0xf04d, 0xf2f2, 0xf024, 0xf252, 0xf569, 0xf06e, 0xf015, 0xf00c, 0xf0f3, 0xf522, 0xf743" } ], "bpp": 1, diff --git a/src/displayapp/screens/Alarm.h b/src/displayapp/screens/Alarm.h index 993d65d1..444102cb 100644 --- a/src/displayapp/screens/Alarm.h +++ b/src/displayapp/screens/Alarm.h @@ -69,7 +69,7 @@ namespace Pinetime { template <> struct AppTraits { static constexpr Apps app = Apps::Alarm; - static constexpr const char* icon = Screens::Symbols::clock; + static constexpr const char* icon = Screens::Symbols::bell; static Screens::Screen* Create(AppControllers& controllers) { return new Screens::Alarm(controllers.alarmController, diff --git a/src/displayapp/screens/Symbols.h b/src/displayapp/screens/Symbols.h index 4434194b..bd958b28 100644 --- a/src/displayapp/screens/Symbols.h +++ b/src/displayapp/screens/Symbols.h @@ -11,6 +11,7 @@ namespace Pinetime { static constexpr const char* plug = "\xEF\x87\xA6"; static constexpr const char* shoe = "\xEF\x95\x8B"; static constexpr const char* clock = "\xEF\x80\x97"; + static constexpr const char* bell = "\xEF\x83\xB3"; static constexpr const char* info = "\xEF\x84\xA9"; static constexpr const char* list = "\xEF\x80\xBA"; static constexpr const char* sun = "\xEF\x86\x85";