diff --git a/server/utils/mixerConnections/LawoRubyConnection.ts b/server/utils/mixerConnections/LawoRubyConnection.ts index aa54393e..3c1518c2 100644 --- a/server/utils/mixerConnections/LawoRubyConnection.ts +++ b/server/utils/mixerConnections/LawoRubyConnection.ts @@ -15,6 +15,7 @@ import { storeChannelDisabled, storeSetAMix, storeCapability, + storeShowChannel, } from '../../reducers/faderActions' import { logger } from '../logger' import { storeSetMixerOnline } from '../../reducers/settingsActions' @@ -161,12 +162,16 @@ export class LawoRubyMixerConnection { store.dispatch( storeChannelDisabled(channelTypeIndex, false) ) + store.dispatch(storeShowChannel(channelTypeIndex, true)) } else { // disable store.dispatch( storeChannelDisabled(channelTypeIndex, true) ) store.dispatch(storeFaderLabel(channelTypeIndex, '')) + store.dispatch( + storeShowChannel(channelTypeIndex, false) + ) } } }