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:
authorNBurn <7nburn@gmail.com>2019-01-25 06:59:16 +0300
committerNBurn <7nburn@gmail.com>2019-01-25 06:59:16 +0300
commitc686df25d98bc6a08ad02b9f4f9cff6b4aee4805 (patch)
tree2ddb8dd6ee0fc2bd546bb95691c07b906aeab1cf /object_print3d_utils
parenta6189ebcbe0fcee59f72147fcc160f7b47234354 (diff)
addons: object select_set syntax update
Diffstat (limited to 'object_print3d_utils')
-rw-r--r--object_print3d_utils/export.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/object_print3d_utils/export.py b/object_print3d_utils/export.py
index 00277958..b0e6bc7b 100644
--- a/object_print3d_utils/export.py
+++ b/object_print3d_utils/export.py
@@ -192,7 +192,7 @@ def write_mesh(context, info, report_cb):
# restore context
base = None
for base in context_backup["selected_bases"]:
- base.select = True
+ base.select_set(True)
del base
scene.objects.active = context_backup["active_object"]