wrap long artist names and titles

custom
jacqueline 1 year ago
parent c1b7a0c9f2
commit 52f5e95acb
  1. 8
      lua/playing.lua

@ -33,22 +33,24 @@ return function(opts)
align_items = "center", align_items = "center",
align_content = "center", align_content = "center",
}, },
w = lvgl.HOR_RES(), w = lvgl.PCT(100),
h = lvgl.SIZE_CONTENT, h = lvgl.SIZE_CONTENT,
flex_grow = 1, flex_grow = 1,
} }
local artist = info:Label { local artist = info:Label {
w = lvgl.SIZE_CONTENT, w = lvgl.PCT(100),
h = lvgl.SIZE_CONTENT, h = lvgl.SIZE_CONTENT,
text = "", text = "",
text_font = font.fusion_10, text_font = font.fusion_10,
text_align = 2,
} }
local title = info:Label { local title = info:Label {
w = lvgl.SIZE_CONTENT, w = lvgl.PCT(100),
h = lvgl.SIZE_CONTENT, h = lvgl.SIZE_CONTENT,
text = "", text = "",
text_align = 2,
} }
local playlist = screen.root:Object { local playlist = screen.root:Object {

Loading…
Cancel
Save