master
Lukas Schulz 2020-12-20 13:39:52 +01:00
parent 92afe4d6a5
commit 479210214b
1 changed files with 2 additions and 2 deletions

View File

@ -133,8 +133,8 @@ def scrollDownSongInfo(offset_x=0,offset_y=96):
#song_info_canvas = song_info_canvas.paste(cover_art,(0,i))
songinfo = ImageDraw.Draw(song_info_canvas)
songinfo_offset_x = 33
songinfo.text((songinfo_offset_x,songinfo_offset_y+11+i), song_name)
songinfo.text((songinfo_offset_x,songinfo_offset_y+i), artist_name)
songinfo.text((songinfo_offset_x,11+i), song_name)
songinfo.text((songinfo_offset_x,i), artist_name)
showImage(canvas, offset_x, offset_y)
sleep(0.02)