Fix regression caused by https://github.com/OpenShot/libopenshot/pull/827, where we changed the class_name of Object Detector

This commit is contained in:
Jonathan Thomas
2022-06-21 11:30:30 -05:00
parent 7c6fcb0c51
commit 7355ac3c55
3 changed files with 3 additions and 3 deletions

View File

@@ -104,7 +104,7 @@ EffectBase* EffectInfo::CreateEffect(std::string effect_type) {
else if(effect_type == "Tracker")
return new Tracker();
else if(effect_type == "Object Detector")
else if(effect_type == "ObjectDetection")
return new ObjectDetection();
#endif