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 dfa835aa..ad8d75f2 100644
--- a/object_color_rules.py
+++ b/object_color_rules.py
@@ -167,7 +167,7 @@ def object_colors_calc(rules, objects):
if is_set is False:
obj_color = color
else:
- # prevent mixing colors loosing saturation
+ # prevent mixing colors losing saturation
obj_color_s = obj_color.s
obj_color = (obj_color * blend[0]) + (color * blend[1])
obj_color.s = (obj_color_s * blend[0]) + (color.s * blend[1])