UI: Rename "Tris to Quads" to "Triangles to Quads"

Rename the operator label to `Triangles to Quads`. This way, when
searching it will show up both when looking for `Triangles` or `Tris`.
Instead of having to always search for `Tris` which is less intuitive.

This also matches the manual, which has been calling this operator
`Triangles to Quads` for several years now.

This does not rename any API or operator name.
This commit is contained in:
Pablo Vazquez
2025-04-24 19:00:48 +02:00
committed by Pablo Vazquez
parent a8b031dcc6
commit f4c31b75ba

View File

@@ -5572,9 +5572,9 @@ static void join_triangle_props(wmOperatorType *ot)
void MESH_OT_tris_convert_to_quads(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Tris to Quads";
ot->name = "Triangles to Quads";
ot->idname = "MESH_OT_tris_convert_to_quads";
ot->description = "Join triangles into quads";
ot->description = "Merge triangles into four sided polygons where possible";
/* api callbacks */
ot->exec = edbm_tris_convert_to_quads_exec;