Skip to content

Commit

Permalink
Fix crash
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiko2k committed Nov 25, 2022
1 parent a955826 commit fd5d77c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

Changelog----------------------------

v7.4.5

- Fixed crash when auto-theme enabled

v7.4.4

- Added file size approximation for CUE tracks
Expand Down
2 changes: 1 addition & 1 deletion extra/com.github.taiko2k.tauonmb.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

<releases>

<release version="7.4.4" date="2022-11-25">
<release version="7.4.5" date="2022-11-25">
<description>
<ul>
<li>Various bug fixes</li>
Expand Down
6 changes: 3 additions & 3 deletions t_modules/t_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import sys
import socket

n_version = "7.4.4"
n_version = "7.4.5"
t_version = "v" + n_version
t_title = 'Tauon Music Box'
t_id = 'tauonmb'
Expand Down Expand Up @@ -5410,8 +5410,8 @@ def update_change(self):
lfm_scrobbler.start_queue()

if (album_mode or not gui.rsp) and (gui.theme_name == "Carbon" or prefs.colour_from_image):

if prefs.colour_from_image and target.parent_folder_path == colours.last_album:
target = self.playing_object()
if target and prefs.colour_from_image and target.parent_folder_path == colours.last_album:
return

album_art_gen.display(target, (0, 0), (50, 50), theme_only=True)
Expand Down

0 comments on commit fd5d77c

Please sign in to comment.