aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/screens/FlashLight.cpp
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2022-07-21 22:56:34 +0300
committerGitHub <noreply@github.com>2022-07-21 22:56:34 +0300
commitd6165e72b7965e587c53221f720b778b0f1cdb12 (patch)
tree36b69cff27097f6decbec47a7aaecb820f0a12bb /src/displayapp/screens/FlashLight.cpp
parent9ee1160578e22e8dfa3da89dfd6405439d374da7 (diff)
Replace icomoon system font with material design icons (#1228)
Diffstat (limited to 'src/displayapp/screens/FlashLight.cpp')
-rw-r--r--src/displayapp/screens/FlashLight.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/FlashLight.cpp b/src/displayapp/screens/FlashLight.cpp
index db3219cf..b00bb0fa 100644
--- a/src/displayapp/screens/FlashLight.cpp
+++ b/src/displayapp/screens/FlashLight.cpp
@@ -22,7 +22,7 @@ FlashLight::FlashLight(Pinetime::Applications::DisplayApp* app,
flashLight = lv_label_create(lv_scr_act(), nullptr);
lv_obj_set_style_local_text_font(flashLight, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &lv_font_sys_48);
- lv_label_set_text_static(flashLight, Symbols::highlight);
+ lv_label_set_text_static(flashLight, Symbols::flashlight);
lv_obj_align(flashLight, nullptr, LV_ALIGN_CENTER, 0, 0);
for (auto& indicator : indicators) {