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 'rigify/rigs/faces/super_face.py')
-rw-r--r--rigify/rigs/faces/super_face.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rigify/rigs/faces/super_face.py b/rigify/rigs/faces/super_face.py
index c097cbb9..8248c38b 100644
--- a/rigify/rigs/faces/super_face.py
+++ b/rigify/rigs/faces/super_face.py
@@ -1042,7 +1042,7 @@ def add_parameters(params):
)
params.primary_layers = bpy.props.BoolVectorProperty(
size=32,
- description="Layers for the 1st tweak controls to be on",
+ description="Layers for the primary controls to be on",
default=tuple([i == 1 for i in range(0, 32)])
)
params.secondary_layers_extra = bpy.props.BoolProperty(
@@ -1052,7 +1052,7 @@ def add_parameters(params):
)
params.secondary_layers = bpy.props.BoolVectorProperty(
size=32,
- description="Layers for the 2nd tweak controls to be on",
+ description="Layers for the secondary controls to be on",
default=tuple([i == 1 for i in range(0, 32)])
)