Triggered when the plug-in calls OfxParameterSuiteV1::paramEditEnd Client host code needs to implement this
| 981 | /// |
| 982 | /// Client host code needs to implement this |
| 983 | OfxStatus |
| 984 | OfxImageEffectInstance::editEnd() |
| 985 | { |
| 986 | ///Don't push undo/redo actions while creating a group |
| 987 | boost::shared_ptr<OfxEffectInstance> effect = getOfxEffectInstance(); |
| 988 | |
| 989 | if ( !effect->getApp()->isCreatingPythonGroup() ) { |
| 990 | effect->setMultipleParamsEditLevel(KnobHolder::eMultipleParamsEditOff); |
| 991 | } |
| 992 | |
| 993 | return kOfxStatOK; |
| 994 | } |
| 995 | |
| 996 | //////////////////////////////////////////////////////////////////////////////// |
| 997 | //////////////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected