From a879e7b603e32b51d2883cb41c0c7027e9c6723c Mon Sep 17 00:00:00 2001 From: jacqueline Date: Tue, 1 Oct 2024 17:10:35 +1000 Subject: Pin some images to ram that we missed --- lua/main_menu.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lua/main_menu.lua') diff --git a/lua/main_menu.lua b/lua/main_menu.lua index ca228102..17cd24ee 100644 --- a/lua/main_menu.lua +++ b/lua/main_menu.lua @@ -38,7 +38,7 @@ return widgets.MenuScreen:new { }) theme.set_subject(now_playing, "now_playing"); - local play_pause = now_playing:Image { src = img.play_small } + local play_pause = now_playing:Image { src = img.play_circ } local title = now_playing:Label { flex_grow = 1, h = lvgl.SIZE_CONTENT, @@ -58,9 +58,9 @@ return widgets.MenuScreen:new { self.bindings = self.bindings + { playback.playing:bind(function(playing) if playing then - play_pause:set_src(img.play_small) + play_pause:set_src(img.play_circ) else - play_pause:set_src(img.pause_small) + play_pause:set_src(img.pause_circ) end end), playback.track:bind(function(track) -- cgit v1.2.3