fix MacVST UI idle calls

This commit is contained in:
Robin Gareus 2016-11-13 18:47:08 +01:00
parent ec31741ee6
commit 68cbbe892f

View File

@ -146,6 +146,6 @@ bool
MacVSTPluginUI::idle ()
{
AEffect* plugin = _vst->state()->plugin;
_vst->state()->wantIdle = plugin->dispatcher (plugin, effIdle, 0, 0, NULL, 0);
_vst->state()->wantIdle = plugin->dispatcher (plugin, effEditIdle, 0, 0, NULL, 0);
return true; // _vst->state()->wantIdle;
}