0
1
mirror of https://github.com/radio95-rnt/RadioPlayer.git synced 2026-02-26 21:53:54 +01:00

change defaults

This commit is contained in:
Kuba
2025-10-13 21:18:51 +02:00
parent 54f6dd8c1e
commit 1ea68eb067

View File

@@ -26,12 +26,12 @@ class Module(ActiveModifier):
if (index - 1) >= 0:
_, last_track_to_fade_out, _, _, _ = self.playlist[index - 1]
else: last_track_to_fade_out = False
else: last_track_to_fade_out = True
if index + 1 < len(self.playlist):
_, _, next_track_to_fade_in, _, _ = self.playlist[index + 1]
else:
next_track_to_fade_in = False
next_track_to_fade_in = True
self.originals.append(track)