--- linuxsampler/trunk/src/engines/gig/Engine.cpp 2007/02/07 21:51:19 1044 +++ linuxsampler/trunk/src/engines/gig/Engine.cpp 2007/03/22 20:39:04 1108 @@ -1524,6 +1524,7 @@ FxSend* pFxSend = pEngineChannel->GetFxSend(iFxSend); if (pFxSend->MidiController() == itControlChangeEvent->Param.CC.Controller) pFxSend->SetLevel(itControlChangeEvent->Param.CC.Value); + pFxSend->SetInfoChanged(true); } } } @@ -1720,7 +1721,7 @@ } String Engine::Version() { - String s = "$Revision: 1.75 $"; + String s = "$Revision: 1.76 $"; return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword }