Refreshing of Album Cover now works as intended

(maybe needs some rewrting of the function)
This commit is contained in:
2023-12-30 11:53:24 +01:00
parent 360ea58a7c
commit 8a55fd9ffb
3 changed files with 4 additions and 0 deletions
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 KiB

After

Width:  |  Height:  |  Size: 67 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 26 KiB

+4
View File
@@ -67,6 +67,10 @@ class RPViewer(Tk):
self.textbox.delete("1.0", "end")
self.textbox.insert("1.0", self.rp.get_fmt_list())
self.textbox.config(state=DISABLED)
self.rp.store_albumcover()
self.img = PhotoImage(file="album_art.gif", format='gif')
self.image_lbl.configure(image=self.img)
self.image_lbl.image=self.img
def main():