summaryrefslogtreecommitdiff
path: root/lua/main_menu.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/main_menu.lua')
-rw-r--r--lua/main_menu.lua6
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)