Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2020-04-28 14:02:06 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-04-28 14:02:06 +0300
commit8da80e7771fd0a492d24d4527f36e0c405d57380 (patch)
tree2af593d3775937e28b3a7aca61c364f99d05fb22 /release
parent2db4a5bb9f00f6ce75cdcf45ac43f50263b80bc6 (diff)
parent6cab53eaaa3abac9778d1c9ab1ac9851bee454a6 (diff)
Merge branch 'blender-v2.83-release'
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/wm.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index f900b0ee3df..9e2ce8b83ad 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -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