UI: Boolean rename "Self" to "Self Intersection"

Better to be more explicit here, also this matches the recent Boolean Node.
This commit is contained in:
Aaron Carlisle 2021-10-06 00:00:00 -04:00
parent ce66075d00
commit 82f0e4948c
2 changed files with 2 additions and 2 deletions

View File

@ -480,7 +480,7 @@ void MESH_OT_intersect_boolean(struct wmOperatorType *ot)
false,
"Swap",
"Use with difference intersection to swap which side is kept");
RNA_def_boolean(ot->srna, "use_self", false, "Self", "Do self-union or self-intersection");
RNA_def_boolean(ot->srna, "use_self", false, "Self Intersection", "Do self-union or self-intersection");
RNA_def_float_distance(
ot->srna, "threshold", 0.000001f, 0.0, 0.01, "Merge Threshold", "", 0.0, 0.001);
RNA_def_enum(ot->srna,

View File

@ -2746,7 +2746,7 @@ static void rna_def_modifier_boolean(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_self", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", eBooleanModifierFlag_Self);
RNA_def_property_ui_text(prop, "Self", "Allow self-intersection in operands");
RNA_def_property_ui_text(prop, "Self Intersection", "Allow self-intersection in operands");
RNA_def_property_update(prop, 0, "rna_Modifier_update");
prop = RNA_def_property(srna, "use_hole_tolerant", PROP_BOOLEAN, PROP_NONE);