aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/screens/UScreenSong.pas4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/screens/UScreenSong.pas b/src/screens/UScreenSong.pas
index bd5eebe5..e43e2196 100644
--- a/src/screens/UScreenSong.pas
+++ b/src/screens/UScreenSong.pas
@@ -1733,6 +1733,10 @@ begin
if not assigned(Song) then
Exit;
+ //fix: if main cat than there is nothing to play
+ if Song.main then
+ Exit;
+
if AudioPlayback.Open(Song.Path.Append(Song.Mp3)) then
begin
PreviewOpened := Interaction;