Merge branch 'blender-v4.2-release'

This commit is contained in:
Campbell Barton
2024-06-28 14:10:47 +10:00
2 changed files with 2 additions and 2 deletions

View File

@@ -451,7 +451,7 @@ def addons_panel_draw_items(
del item_local
else:
# Weak but allow some add-ons
# Weak but allow some add-ons to be hidden, as they're for internal use.
if (module_name in SECRET_ADDONS) and is_enabled and (show_development is False):
continue

View File

@@ -452,7 +452,7 @@ def rmtree_with_fallback_or_error(
Use this when a directory is expected, but there is the possibility
that there is a file or symbolic-link which should be removed instead.
Intended to be used user managed files,
Intended to be used for user managed files,
where removal is required and we can't be certain of the kind of file.
On failure, a string will be returned containing the first error.