From b07bfbc6c70fd0bba8dff85fe4149feb9fa9b8d4 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Thu, 23 Nov 2023 10:40:04 +1100 Subject: Add a second font, flesh out browser screen --- src/ui/screen_playing.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/ui/screen_playing.cpp') diff --git a/src/ui/screen_playing.cpp b/src/ui/screen_playing.cpp index d2a27c31..c29d342e 100644 --- a/src/ui/screen_playing.cpp +++ b/src/ui/screen_playing.cpp @@ -19,7 +19,6 @@ #include "extra/layouts/flex/lv_flex.h" #include "extra/layouts/grid/lv_grid.h" #include "font/lv_symbol_def.h" -#include "font_symbols.hpp" #include "future_fetcher.hpp" #include "lvgl.h" @@ -89,7 +88,6 @@ auto Playing::control_button(lv_obj_t* parent, char* icon) -> lv_obj_t* { lv_obj_t* icon_obj = lv_img_create(button); lv_img_set_src(icon_obj, icon); - lv_obj_set_style_text_font(icon_obj, &font_symbols, 0); return button; } @@ -253,7 +251,6 @@ Playing::Playing(models::TopBar& top_bar_model, next_up_hint_ = lv_label_create(next_up_header_); lv_label_set_text(next_up_hint_, ""); - lv_obj_set_style_text_font(next_up_hint_, &font_symbols, 0); lv_obj_set_size(next_up_hint_, LV_SIZE_CONTENT, lv_pct(100)); next_up_container_ = lv_list_create(content_); -- cgit v1.2.3