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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Bakker <jeroen@blender.org>2022-05-31 10:52:32 +0300
committerJeroen Bakker <jeroen@blender.org>2022-05-31 10:52:32 +0300
commita3a138b41b7d00d4bc822ba2725e274f201d6248 (patch)
treefa6f714122c18b51cc195b565f40d445a2215084
parent5fdd3677867a8274a9537ea8e8b5485dae1d9bbc (diff)
parent1ebc0ebdc08f776071ee2a712548685dd21cc94b (diff)
Merge branch 'blender-v3.2-release'
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_filter_color.c2
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_ops.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_filter_color.c b/source/blender/editors/sculpt_paint/sculpt_filter_color.c
index 26d18823b37..165e87eb2cd 100644
--- a/source/blender/editors/sculpt_paint/sculpt_filter_color.c
+++ b/source/blender/editors/sculpt_paint/sculpt_filter_color.c
@@ -378,7 +378,7 @@ void SCULPT_OT_color_filter(struct wmOperatorType *ot)
/* identifiers */
ot->name = "Filter Color";
ot->idname = "SCULPT_OT_color_filter";
- ot->description = "Applies a filter to modify the current sculpt vertex colors";
+ ot->description = "Applies a filter to modify the active color attribute";
/* api callbacks */
ot->invoke = sculpt_color_filter_invoke;
diff --git a/source/blender/editors/sculpt_paint/sculpt_ops.c b/source/blender/editors/sculpt_paint/sculpt_ops.c
index dc620f0ee93..eef344c3d90 100644
--- a/source/blender/editors/sculpt_paint/sculpt_ops.c
+++ b/source/blender/editors/sculpt_paint/sculpt_ops.c
@@ -1098,7 +1098,7 @@ static void SCULPT_OT_mask_by_color(wmOperatorType *ot)
/* identifiers */
ot->name = "Mask by Color";
ot->idname = "SCULPT_OT_mask_by_color";
- ot->description = "Creates a mask based on the sculpt vertex colors";
+ ot->description = "Creates a mask based on the active color attribute";
/* api callbacks */
ot->invoke = sculpt_mask_by_color_invoke;