dashboard: remove fuel bar tick markers

This commit is contained in:
2026-06-12 00:11:34 -06:00
parent 4e3af90e06
commit 1b49df5986
2 changed files with 1 additions and 10 deletions
@@ -1313,15 +1313,6 @@ static void create_overland_overview_screen()
lv_obj_set_style_border_color(vehicle_fuel_bar, lv_color_hex(0xDDE3EA), 0);
lv_obj_set_style_border_width(vehicle_fuel_bar, 2, 0);
for (int i = 1; i <= 3; i++) {
lv_obj_t *tick = lv_obj_create(vehicle_card);
lv_obj_set_size(tick, 2, 28);
lv_obj_set_style_bg_color(tick, lv_color_hex(0x7D8996), 0);
lv_obj_set_style_border_width(tick, 0, 0);
lv_obj_set_style_radius(tick, 0, 0);
lv_obj_align(tick, LV_ALIGN_BOTTOM_LEFT, 74 + (i * 50), -26);
}
vehicle_fuel_value_label = lv_label_create(vehicle_card);
lv_label_set_text(vehicle_fuel_value_label, "");
lv_obj_add_flag(vehicle_fuel_value_label, LV_OBJ_FLAG_HIDDEN);