Revert "Stop preview channel from auto advancing."

This reverts commit 7401cde4a6.
This commit is contained in:
Matthew Stratford 2023-04-13 23:28:37 +01:00
parent 7401cde4a6
commit 4cd624bbf0

View file

@ -383,11 +383,6 @@ export function Player({ id }: { id: number }) {
if (id < PLAYER_COUNT) { if (id < PLAYER_COUNT) {
return ("player-" + id) as LevelsSource; 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); throw new Error("Unknown Player VUMeter source: " + id);
}; };