From 3a4255a3b92c17bd5e9ec5e9e321b6e9fdb57f8a Mon Sep 17 00:00:00 2001 From: Lukas Schulz Date: Sun, 20 Dec 2020 00:58:20 +0100 Subject: [PATCH] yes. --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index e028aea..9a23c35 100644 --- a/main.py +++ b/main.py @@ -90,6 +90,7 @@ def drawCanvas(): songinfo.text((songinfo_offset_x,songinfo_offset_y+10), song_name) songinfo.text((songinfo_offset_x,songinfo_offset_y), artist_name) showImage(canvas) + if(font.getsize(song_name)[0]>160): x = threading.Thread(target=scrolling_text,args=(song_name,songinfo_offset_x,songinfo_offset_y+10)) if(font.getsize(artist_name)[0]>160): @@ -102,7 +103,7 @@ def scrolling_text(text,offset_x=0,offset_y=0): scrolled_text_canvas = Image.new('RGB', (10, 32), color = 'black') scrolled_text = ImageDraw.Draw(scrolled_text) scrolled_text.text((-i,0), text) - showImage(canvas, offset_x, offset_y) + showImage(scrolled_text_canvas, offset_x, offset_y)