Merge pull request #2679 from pypeclub/feature/disable_cleanupfarm_by_default

General: Add settings for CleanUpFarm and disable the plugin by default
This commit is contained in:
Ondřej Samohel 2022-02-08 18:00:31 +01:00 committed by GitHub
commit 1be9ff7c39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 1 deletions

View file

@ -208,6 +208,9 @@
"CleanUp": {
"paterns": [],
"remove_temp_renders": false
},
"CleanUpFarm": {
"enabled": false
}
},
"tools": {

View file

@ -677,8 +677,22 @@
"label": "Remove Temp renders",
"default": false
}
]
},
{
"type": "dict",
"collapsible": false,
"key": "CleanUpFarm",
"label": "Clean Up Farm",
"is_group": true,
"checkbox_key": "enabled",
"children": [
{
"type": "boolean",
"key": "enabled",
"label": "Enabled"
}
]
}
]
}