diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/UScreenSong.pas | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/screens/UScreenSong.pas b/src/screens/UScreenSong.pas index c2afbfe1..bd5eebe5 100644 --- a/src/screens/UScreenSong.pas +++ b/src/screens/UScreenSong.pas @@ -940,15 +940,8 @@ begin Song := CatSongs.Song[I]; - if not Song.Main then - begin // to-do : load category covers again... - // just a workaround to fic folders=on for the moment... - // if cover-image is not found then show 'no cover' - CoverFile := Song.Path.Append(Song.Cover); - if (not CoverFile.IsFile()) then - Song.Cover := PATH_NONE; - end - else + CoverFile := Song.Path.Append(Song.Cover); + if (not CoverFile.IsFile()) then Song.Cover := PATH_NONE; if (Song.Cover.IsUnset) then |