summaryrefslogtreecommitdiff
path: root/src/ui/screen_playing.cpp
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2023-09-12 14:43:28 +1000
committerjacqueline <me@jacqueline.id.au>2023-09-12 14:43:28 +1000
commitb0aa9ab391143a8139373e42ea95ccb6ed14ce60 (patch)
treed0b662df218297285bd1f25087120ec4279c74ae /src/ui/screen_playing.cpp
parentad74a459216832499a41f5805fd820006c409017 (diff)
downloadtangara-fw-b0aa9ab391143a8139373e42ea95ccb6ed14ce60.tar.gz
Fix ui nits for playback screen
The top bar now updates properly when starting playback, and the upcoming list items no longer marquee.
Diffstat (limited to 'src/ui/screen_playing.cpp')
-rw-r--r--src/ui/screen_playing.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/screen_playing.cpp b/src/ui/screen_playing.cpp
index 2eb4e09e..e0fff095 100644
--- a/src/ui/screen_playing.cpp
+++ b/src/ui/screen_playing.cpp
@@ -99,6 +99,7 @@ auto Playing::control_button(lv_obj_t* parent, char* icon) -> lv_obj_t* {
auto Playing::next_up_label(lv_obj_t* parent, const std::string& text)
-> lv_obj_t* {
lv_obj_t* button = lv_list_add_btn(parent, NULL, text.c_str());
+ lv_label_set_long_mode(lv_obj_get_child(button, -1), LV_LABEL_LONG_DOT);
lv_obj_add_event_cb(button, below_fold_focus_cb, LV_EVENT_FOCUSED, this);
lv_group_add_obj(group_, button);
return button;