summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/settings/SettingSteps.cpp
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-03-27 23:30:39 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-04-10 06:37:17 (GMT)
commit1c869f788057c98251c2f6ba2d25f2fe1cafee3d (patch)
tree0f039894a8398a8254c78f059ba5cd5bfa90aa4a /src/displayapp/screens/settings/SettingSteps.cpp
parentf85ecbc7bff3cb7c827380c96ff00b1de3857d76 (diff)
Use neofonts
Diffstat (limited to 'src/displayapp/screens/settings/SettingSteps.cpp')
-rw-r--r--src/displayapp/screens/settings/SettingSteps.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/settings/SettingSteps.cpp b/src/displayapp/screens/settings/SettingSteps.cpp
index 5ca3eec..da0f182 100644
--- a/src/displayapp/screens/settings/SettingSteps.cpp
+++ b/src/displayapp/screens/settings/SettingSteps.cpp
@@ -43,7 +43,7 @@ SettingSteps::SettingSteps(
lv_obj_align(icon, title, LV_ALIGN_OUT_LEFT_MID, -10, 0);
stepValue = lv_label_create(lv_scr_act(), nullptr);
- lv_obj_set_style_local_text_font(stepValue, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42);
+ lv_obj_set_style_local_text_font(stepValue, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &neofont2);
lv_label_set_text_fmt(stepValue, "%lu", settingsController.GetStepsGoal());
lv_label_set_align(stepValue, LV_LABEL_ALIGN_CENTER);
lv_obj_align(stepValue, lv_scr_act(), LV_ALIGN_CENTER, 0, -10);