diff options
| author | jacqueline <me@jacqueline.id.au> | 2024-10-01 17:10:35 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2024-10-01 17:10:35 +1000 |
| commit | a879e7b603e32b51d2883cb41c0c7027e9c6723c (patch) | |
| tree | 01485ac0f25c1d1d057d648ab3d4b511a5800f69 /lua/main_menu.lua | |
| parent | 4c2bcbfb56e589c61d065e285655456ac833aa08 (diff) | |
| download | tangara-fw-a879e7b603e32b51d2883cb41c0c7027e9c6723c.tar.gz | |
Pin some images to ram that we missed
Diffstat (limited to 'lua/main_menu.lua')
| -rw-r--r-- | lua/main_menu.lua | 6 |
1 files changed, 3 insertions, 3 deletions
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) |
