[Bf-blender-cvs] [679eefae745] blender2.8: UI: shorten proportional edit name

Campbell Barton noreply at git.blender.org
Wed Jun 13 09:22:13 CEST 2018


Commit: 679eefae74540024a413521f4dcee914b0d18919
Author: Campbell Barton
Date:   Wed Jun 13 09:16:26 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB679eefae74540024a413521f4dcee914b0d18919

UI: shorten proportional edit name

Didn't fit in panel.

===================================================================

M	source/blender/editors/transform/transform_ops.c

===================================================================

diff --git a/source/blender/editors/transform/transform_ops.c b/source/blender/editors/transform/transform_ops.c
index 1c57103e5a2..c42887412fa 100644
--- a/source/blender/editors/transform/transform_ops.c
+++ b/source/blender/editors/transform/transform_ops.c
@@ -534,7 +534,7 @@ void Transform_Properties(struct wmOperatorType *ot, int flags)
 	if (flags & P_PROPORTIONAL) {
 		RNA_def_enum(ot->srna, "proportional", rna_enum_proportional_editing_items, 0, "Proportional Editing", "");
 		prop = RNA_def_enum(ot->srna, "proportional_edit_falloff", rna_enum_proportional_falloff_items, 0,
-		                    "Proportional Editing Falloff", "Falloff type for proportional editing mode");
+		                    "Proportional Falloff", "Falloff type for proportional editing mode");
 		RNA_def_property_translation_context(prop, BLT_I18NCONTEXT_ID_CURVE); /* Abusing id_curve :/ */
 		RNA_def_float(ot->srna, "proportional_size", 1, T_PROP_SIZE_MIN, T_PROP_SIZE_MAX,
 		              "Proportional Size", "", 0.001f, 100.0f);



More information about the Bf-blender-cvs mailing list