Skip to content

Commit fa1af55

Browse files
authoredFeb 12, 2024
Alarm: Replace clock icon with bell
1 parent c2c53bc commit fa1af55

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
 

‎src/displayapp/fonts/fonts.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
{
99
"file": "FontAwesome5-Solid+Brands+Regular.woff",
10-
"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"
10+
"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"
1111
}
1212
],
1313
"bpp": 1,

‎src/displayapp/screens/Alarm.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ namespace Pinetime {
6969
template <>
7070
struct AppTraits<Apps::Alarm> {
7171
static constexpr Apps app = Apps::Alarm;
72-
static constexpr const char* icon = Screens::Symbols::clock;
72+
static constexpr const char* icon = Screens::Symbols::bell;
7373

7474
static Screens::Screen* Create(AppControllers& controllers) {
7575
return new Screens::Alarm(controllers.alarmController,

‎src/displayapp/screens/Symbols.h

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ namespace Pinetime {
1111
static constexpr const char* plug = "\xEF\x87\xA6";
1212
static constexpr const char* shoe = "\xEF\x95\x8B";
1313
static constexpr const char* clock = "\xEF\x80\x97";
14+
static constexpr const char* bell = "\xEF\x83\xB3";
1415
static constexpr const char* info = "\xEF\x84\xA9";
1516
static constexpr const char* list = "\xEF\x80\xBA";
1617
static constexpr const char* sun = "\xEF\x86\x85";

0 commit comments

Comments
 (0)