Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKepzie committed Jan 31, 2017
1 parent f5adc46 commit d2a72b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Shuffle/Shuffle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1454,19 +1454,19 @@ ShufflePlugin::setChannelsFromRed(double time)
if ( (chan == ".G") || (chan == ".g") ) {
_channelParam[1]->setValue(i);
if (_channelStringParam[1]) {
_channelStringParam[1]->setValue(chan);
_channelStringParam[1]->setValue(opt);
}
gSet = true;
} else if ( (chan == ".B") || (chan == ".b") ) {
_channelParam[2]->setValue(i);
if (_channelStringParam[2]) {
_channelStringParam[2]->setValue(chan);
_channelStringParam[2]->setValue(opt);
}
bSet = true;
} else if ( (chan == ".A") || (chan == ".a") ) {
_channelParam[3]->setValue(i);
if (_channelStringParam[3]) {
_channelStringParam[3]->setValue(chan);
_channelStringParam[3]->setValue(opt);
}
aSet = true;
}
Expand Down

0 comments on commit d2a72b6

Please sign in to comment.