Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4097 from pypeclub/feature/validate_frame_range_s…
Browse files Browse the repository at this point in the history
…ettings

Publisher: Settings for validate frame range
  • Loading branch information
iLLiCiTiT authored Nov 15, 2022
2 parents a4ec78b + 3b9662f commit 39d1467
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -303,5 +303,12 @@
"extensions": [
".mov"
]
},
"publish": {
"ValidateFrameRange": {
"enabled": true,
"optional": true,
"active": true
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,24 @@
"object_type": "text"
}
]
},
{
"type": "dict",
"collapsible": true,
"key": "publish",
"label": "Publish plugins",
"children": [
{
"type": "schema_template",
"name": "template_validate_plugin",
"template_data": [
{
"key": "ValidateFrameRange",
"label": "Validate frame range"
}
]
}
]
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[
{
"type": "dict",
"collapsible": true,
"key": "{key}",
"label": "{label}",
"checkbox_key": "enabled",
"children": [
{
"type": "boolean",
"key": "enabled",
"label": "Enabled"
},
{
"type": "boolean",
"key": "optional",
"label": "Optional"
},
{
"type": "boolean",
"key": "active",
"label": "Active"
}
]
}
]

0 comments on commit 39d1467

Please sign in to comment.