@@ -39,7 +39,7 @@ SettingSteps::SettingSteps(Pinetime::Controllers::Settings& settingsController)
39
39
lv_obj_align (icon, title, LV_ALIGN_OUT_LEFT_MID, -10 , 0 );
40
40
41
41
stepValue = lv_label_create (lv_scr_act (), nullptr );
42
- lv_obj_set_style_local_text_font (stepValue, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42 );
42
+ lv_obj_set_style_local_text_font (stepValue, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, ¬o_sans_42 );
43
43
lv_label_set_text_fmt (stepValue, " %lu" , settingsController.GetStepsGoal ());
44
44
lv_label_set_align (stepValue, LV_LABEL_ALIGN_CENTER);
45
45
lv_obj_align (stepValue, lv_scr_act (), LV_ALIGN_CENTER, 0 , -20 );
@@ -53,7 +53,7 @@ SettingSteps::SettingSteps(Pinetime::Controllers::Settings& settingsController)
53
53
lv_obj_align (btnPlus, lv_scr_act (), LV_ALIGN_IN_BOTTOM_RIGHT, 0 , 0 );
54
54
lv_obj_set_style_local_bg_color (btnPlus, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::bgAlt);
55
55
lv_obj_t * lblPlus = lv_label_create (btnPlus, nullptr );
56
- lv_obj_set_style_local_text_font (lblPlus, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42 );
56
+ lv_obj_set_style_local_text_font (lblPlus, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, ¬o_sans_42 );
57
57
lv_label_set_text_static (lblPlus, " +" );
58
58
lv_obj_set_event_cb (btnPlus, event_handler);
59
59
@@ -64,7 +64,7 @@ SettingSteps::SettingSteps(Pinetime::Controllers::Settings& settingsController)
64
64
lv_obj_align (btnMinus, lv_scr_act (), LV_ALIGN_IN_BOTTOM_LEFT, 0 , 0 );
65
65
lv_obj_set_style_local_bg_color (btnMinus, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::bgAlt);
66
66
lv_obj_t * lblMinus = lv_label_create (btnMinus, nullptr );
67
- lv_obj_set_style_local_text_font (lblMinus, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42 );
67
+ lv_obj_set_style_local_text_font (lblMinus, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, ¬o_sans_42 );
68
68
lv_label_set_text_static (lblMinus, " -" );
69
69
}
70
70
0 commit comments