From 4cd624bbf09c905900ed8d3fdbfc7653a7569876 Mon Sep 17 00:00:00 2001 From: Matthew Stratford Date: Thu, 13 Apr 2023 23:28:37 +0100 Subject: [PATCH] Revert "Stop preview channel from auto advancing." This reverts commit 7401cde4a6d684daf8730ab9670c1101433857ed. --- src/showplanner/Player.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/showplanner/Player.tsx b/src/showplanner/Player.tsx index b480ca7..c5f1122 100644 --- a/src/showplanner/Player.tsx +++ b/src/showplanner/Player.tsx @@ -383,11 +383,6 @@ export function Player({ id }: { id: number }) { if (id < PLAYER_COUNT) { return ("player-" + id) as LevelsSource; } - // We don't want the Preview channel doing anything silly, overwrite default player settings. - if (isPreviewChannel) { - dispatch(MixerState.setAutoAdvance({ player: id, enabled: false })); - } - throw new Error("Unknown Player VUMeter source: " + id); };