How to update UI params after sequence resetup?
Hello,
My plugins rename param on cmd PF_Cmd_UPDATE_PARAMS_UI
PF_ParamDef param_copy = *params[id];
strcpy( param_copy.name, parameter.name );param_copy.uu.change_flags = PF_ChangeFlag_CHANGED_VALUE;
ERR( suites.ParamUtilsSuite3()->PF_UpdateParamUI( in_data->effect_ref,
id,
¶m_copy ) )
but, if I close and open solution, name of param return to default, and don't call cmd PF_Cmd_UPDATE_PARAMS_UI.
Maybe as it is possible to force this event?
Thanks!
