~mbranton/libopenshot/alpha-channel-fix

« back to all changes in this revision

Viewing changes to src/Clip.cpp

  • Committer: Jonathan Thomas
  • Date: 2016-08-19 00:45:45 UTC
  • Revision ID: jonathan@openshot.org-20160819004545-ktlmx0veat6u9kvu
Renaming Layer to Track in JSON properties

Show diffs side-by-side

added added

removed removed

Lines of Context:
637
637
        Json::Value root;
638
638
        root["id"] = add_property_json("ID", 0.0, "string", Id(), false, 0, -1, -1, CONSTANT, -1, true);
639
639
        root["position"] = add_property_json("Position", Position(), "float", "", false, 0, 0, 30 * 60 * 60 * 48, CONSTANT, -1, false);
640
 
        root["layer"] = add_property_json("Layer", Layer(), "int", "", false, 0, 0, 20, CONSTANT, -1, false);
 
640
        root["layer"] = add_property_json("Track", Layer(), "int", "", false, 0, 0, 20, CONSTANT, -1, false);
641
641
        root["start"] = add_property_json("Start", Start(), "float", "", false, 0, 0, 30 * 60 * 60 * 48, CONSTANT, -1, false);
642
642
        root["end"] = add_property_json("End", End(), "float", "", false, 0, 0, 30 * 60 * 60 * 48, CONSTANT, -1, false);
643
643
        root["duration"] = add_property_json("Duration", Duration(), "float", "", false, 0, 0, 30 * 60 * 60 * 48, CONSTANT, -1, true);