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:
authorHans Goudey <h.goudey@me.com>2020-08-16 15:57:46 +0300
committerHans Goudey <h.goudey@me.com>2020-08-16 15:57:46 +0300
commit5c78c16b1494cf3d4bbe3efaf45323e25a2ba52b (patch)
tree8711954602b0b45857445853412eeda3ba894064 /source/blender/editors/sculpt_paint
parent4f57e1aaeab90f1a03754157978d959f4c7cc18d (diff)
UI: Simplify cloth filter type description
Remove extra words in the message and avoid repeating the name in the description.
Diffstat (limited to 'source/blender/editors/sculpt_paint')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_cloth.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_cloth.c b/source/blender/editors/sculpt_paint/sculpt_cloth.c
index 5126dbe1316..4070822a0a8 100644
--- a/source/blender/editors/sculpt_paint/sculpt_cloth.c
+++ b/source/blender/editors/sculpt_paint/sculpt_cloth.c
@@ -1043,11 +1043,7 @@ static EnumPropertyItem prop_cloth_filter_type[] = {
{CLOTH_FILTER_GRAVITY, "GRAVITY", 0, "Gravity", "Applies gravity to the simulation"},
{CLOTH_FILTER_INFLATE, "INFLATE", 0, "Inflate", "Inflates the cloth"},
{CLOTH_FILTER_EXPAND, "EXPAND", 0, "Expand", "Expands the cloth's dimensions"},
- {CLOTH_FILTER_PINCH,
- "PINCH",
- 0,
- "Pinch",
- "Pinches the cloth to the point where the cursor was when the filter started"},
+ {CLOTH_FILTER_PINCH, "PINCH", 0, "Pinch", "Pulls the cloth to the cursor's start position"},
{0, NULL, 0, NULL, NULL},
};