From febc96cedc02a6409917ac4beafc1d92d67f521a Mon Sep 17 00:00:00 2001 From: Matthew Stratford Date: Mon, 2 Nov 2020 19:21:23 +0000 Subject: [PATCH] Make Mic VU meter follow stereo metering. --- src/showplanner/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/showplanner/index.tsx b/src/showplanner/index.tsx index 4909e5c..1935f37 100644 --- a/src/showplanner/index.tsx +++ b/src/showplanner/index.tsx @@ -194,6 +194,9 @@ function LibraryColumn() { function MicControl() { const state = useSelector((state: RootState) => state.mixer.mic); const proMode = useSelector((state: RootState) => state.settings.proMode); + const stereo = useSelector( + (state: RootState) => state.settings.channelVUsStereo + ); const dispatch = useDispatch(); return ( @@ -249,7 +252,7 @@ function MicControl() { source="mic-final" range={[-40, 3]} greenRange={[-16, -6]} - stereo={proMode} + stereo={proMode && stereo} />