Fix T44630: incorrect mirror modifier merge limit tooltip.

This commit is contained in:
Brecht Van Lommel 2015-05-07 10:56:45 +02:00
parent 3ec8bcebf3
commit 0e9b210595
Notes: blender-bot 2023-02-14 09:09:40 +01:00
Referenced by issue #44630, Merge Limit of mirror modifier does not act definitely.
1 changed files with 1 additions and 1 deletions

View File

@ -1433,7 +1433,7 @@ static void rna_def_modifier_mirror(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "tolerance");
RNA_def_property_range(prop, 0, FLT_MAX);
RNA_def_property_ui_range(prop, 0, 1, 0.01, 6);
RNA_def_property_ui_text(prop, "Merge Limit", "Distance from axis within which mirrored vertices are merged");
RNA_def_property_ui_text(prop, "Merge Limit", "Distance within which mirrored vertices are merged");
RNA_def_property_update(prop, 0, "rna_Modifier_update");
prop = RNA_def_property(srna, "mirror_object", PROP_POINTER, PROP_NONE);