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 'object_color_rules.py')
-rw-r--r--object_color_rules.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/object_color_rules.py b/object_color_rules.py
index 52011366..f404c06e 100644
--- a/object_color_rules.py
+++ b/object_color_rules.py
@@ -172,7 +172,7 @@ def object_colors_select(rule, objects):
test_cb = getattr(rule_test, rule_type)
for obj in objects:
- obj.select = test_cb(obj, rule, cache)
+ obj.select_set(test_cb(obj, rule, cache))
def object_colors_rule_validate(rule, report):