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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'blenderkit/utils.py')
-rw-r--r--blenderkit/utils.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/blenderkit/utils.py b/blenderkit/utils.py
index 94f795c1..adf5bd03 100644
--- a/blenderkit/utils.py
+++ b/blenderkit/utils.py
@@ -780,13 +780,13 @@ def get_fake_context(context, area_type='VIEW_3D'):
C_dict = {} # context.copy() #context.copy was a source of problems - incompatibility with addons that also define context
C_dict.update(region='WINDOW')
- try:
- context = context.copy()
- # print('bk context copied successfully')
- except Exception as e:
- print(e)
- print('BlenderKit: context.copy() failed. Can be a colliding addon.')
- context = {}
+ # try:
+ # context = context.copy()
+ # # print('bk context copied successfully')
+ # except Exception as e:
+ # print(e)
+ # print('BlenderKit: context.copy() failed. Can be a colliding addon.')
+ context = {}
if context.get('area') is None or context.get('area').type != area_type:
w, a, r = get_largest_area(area_type=area_type)