diff options
| author | Bryton Hall <email@bryton.io> | 2021-07-02 15:34:32 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-02 15:34:32 (GMT) |
| commit | 4e435e93e0b4db101f9232661ee4147a90084df0 (patch) | |
| tree | a72c01b611b3b00a66e62cdf546c9579ca2b1d88 /src/displayapp/screens | |
| parent | 38f40034b0a200586429a3d8329479ad13d84d94 (diff) | |
and metronome icon (#439)
* add drum icon for metronome app
Diffstat (limited to 'src/displayapp/screens')
| -rw-r--r-- | src/displayapp/screens/ApplicationList.cpp | 2 | ||||
| -rw-r--r-- | src/displayapp/screens/Symbols.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/displayapp/screens/ApplicationList.cpp b/src/displayapp/screens/ApplicationList.cpp index d434c17..78c7cd9 100644 --- a/src/displayapp/screens/ApplicationList.cpp +++ b/src/displayapp/screens/ApplicationList.cpp @@ -63,7 +63,7 @@ std::unique_ptr<Screen> ApplicationList::CreateScreen2() { {Symbols::paddle, Apps::Paddle}, {"2", Apps::Twos}, {"M", Apps::Motion}, - {"b", Apps::Metronome}, + {Symbols::drum, Apps::Metronome}, {"", Apps::None}, }}; diff --git a/src/displayapp/screens/Symbols.h b/src/displayapp/screens/Symbols.h index 8d55f69..c9d6154 100644 --- a/src/displayapp/screens/Symbols.h +++ b/src/displayapp/screens/Symbols.h @@ -40,6 +40,7 @@ namespace Pinetime { static constexpr const char* stopWatch = "\xEF\x8B\xB2"; static constexpr const char* hourGlass = "\xEF\x89\x92"; static constexpr const char* lapsFlag = "\xEF\x80\xA4"; + static constexpr const char* drum = "\xEF\x95\xA9"; // lv_font_sys_48.c static constexpr const char* settings = "\xEE\xA4\x82"; // e902 |
