Merge branch 'blender-v2.83-release'

This commit is contained in:
Brecht Van Lommel
2020-04-28 13:02:06 +02:00
21 changed files with 219 additions and 120 deletions

View File

@@ -87,8 +87,10 @@ def context_path_validate(context, data_path):
# One of the items in the rna path is None, just ignore this
value = Ellipsis
else:
# We have a real error in the rna path, don't ignore that
raise
# Print invalid path, but don't show error to the users and fully
# break the UI if the operator is bound to an event like left click.
print("context_path_validate error: context.%s not found (invalid keymap entry?)" % data_path)
value = Ellipsis
return value