From 1ea68eb06795a6c1183969b2672f0b2b0b008d0a Mon Sep 17 00:00:00 2001 From: Kuba <132459354+KubaPro010@users.noreply.github.com> Date: Mon, 13 Oct 2025 21:18:51 +0200 Subject: [PATCH] change defaults --- modules/active_modifier.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/active_modifier.py b/modules/active_modifier.py index 0134af9..92693e8 100644 --- a/modules/active_modifier.py +++ b/modules/active_modifier.py @@ -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)