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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-04-17 18:24:04 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-04-17 18:24:04 +0400
commit3f9fce6542e92f4a62af326572bccd3a4cbcfce1 (patch)
tree86c3eb71cfd58c8adc5068ad9f5084768fac0a3c /source/blender/editors/transform/transform_ops.c
parente4734d3d01a72a765aab3dad7da23b447f7018fe (diff)
Fix #30980: edge slide Correct UVs option not working.
Was a bmesh todo, main issue was with shape keys, now disabled any changes to the shape key data layer, and disabled the option altogether when editing non-basis shape keys.
Diffstat (limited to 'source/blender/editors/transform/transform_ops.c')
-rw-r--r--source/blender/editors/transform/transform_ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/transform/transform_ops.c b/source/blender/editors/transform/transform_ops.c
index cb7d9ae723b..09078c199c4 100644
--- a/source/blender/editors/transform/transform_ops.c
+++ b/source/blender/editors/transform/transform_ops.c
@@ -500,12 +500,12 @@ void Transform_Properties(struct wmOperatorType *ot, int flags)
if (flags & P_OPTIONS)
{
- RNA_def_boolean(ot->srna, "texture_space", 0, "Edit Object data texture space", "");
+ RNA_def_boolean(ot->srna, "texture_space", 0, "Edit Texture Space", "Edit Object data texture space");
}
if (flags & P_CORRECT_UV)
{
- RNA_def_boolean(ot->srna, "correct_uv", 0, "Correct UV coords when transforming", "");
+ RNA_def_boolean(ot->srna, "correct_uv", 0, "Correct UVs", "Correct UV coordinates when transforming");
}
// Add confirm method all the time. At the end because it's not really that important and should be hidden only in log, not in keymap edit