diff options
Diffstat (limited to 'lua/playing.lua')
| -rw-r--r-- | lua/playing.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lua/playing.lua b/lua/playing.lua index a1ba2cc1..3368f590 100644 --- a/lua/playing.lua +++ b/lua/playing.lua @@ -8,12 +8,12 @@ local screen = require("screen") local theme = require("theme") local img = { - play = "//lua/img/play.png", - pause = "//lua/img/pause.png", - next = "//lua/img/next.png", - prev = "//lua/img/prev.png", - shuffle = "//lua/img/shuffle.png", - repeat_src = "//lua/img/repeat.png", -- repeat is a reserved word + play = lvgl.ImgData("//lua/img/play.png"), + pause = lvgl.ImgData("//lua/img/pause.png"), + next = lvgl.ImgData("//lua/img/next.png"), + prev = lvgl.ImgData("//lua/img/prev.png"), + shuffle = lvgl.ImgData("//lua/img/shuffle.png"), + repeat_src = lvgl.ImgData("//lua/img/repeat.png"), -- repeat is a reserved word } local is_now_playing_shown = false |
