diff --git a/include/EffectBase.h b/include/EffectBase.h index 29e98b58..f462526d 100644 --- a/include/EffectBase.h +++ b/include/EffectBase.h @@ -50,7 +50,6 @@ namespace openshot struct EffectInfoStruct { std::string class_name; ///< The class name of the effect - std::string short_name; ///< A short name of the effect, commonly used for icon names, etc... std::string name; ///< The name of the effect std::string description; ///< The description of this effect and what it does bool has_video; ///< Determines if this effect manipulates the image of a frame diff --git a/src/EffectBase.cpp b/src/EffectBase.cpp index 30e83765..e4a9e0ab 100644 --- a/src/EffectBase.cpp +++ b/src/EffectBase.cpp @@ -87,7 +87,6 @@ Json::Value EffectBase::JsonValue() { Json::Value root = ClipBase::JsonValue(); // get parent properties root["name"] = info.name; root["class_name"] = info.class_name; - root["short_name"] = info.short_name; root["description"] = info.description; root["has_video"] = info.has_video; root["has_audio"] = info.has_audio; @@ -144,7 +143,6 @@ Json::Value EffectBase::JsonInfo() { Json::Value root; root["name"] = info.name; root["class_name"] = info.class_name; - root["short_name"] = info.short_name; root["description"] = info.description; root["has_video"] = info.has_video; root["has_audio"] = info.has_audio;