From 44ee52ab4bb3d47f5b8bb7de9f78d3ab7b3cd7da Mon Sep 17 00:00:00 2001 From: Gaia Clary Date: Wed, 9 May 2012 17:14:16 +0000 Subject: fix: #31374 Wrong/Missleading hint texts in material assignment. --- source/blender/editors/render/render_shading.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/render') diff --git a/source/blender/editors/render/render_shading.c b/source/blender/editors/render/render_shading.c index ca4683b864c..883eb118800 100644 --- a/source/blender/editors/render/render_shading.c +++ b/source/blender/editors/render/render_shading.c @@ -208,7 +208,7 @@ void OBJECT_OT_material_slot_assign(wmOperatorType *ot) /* identifiers */ ot->name = "Assign Material Slot"; ot->idname = "OBJECT_OT_material_slot_assign"; - ot->description = "Assign the material in the selected material slot to the selected vertices"; + ot->description = "Assign active material to selected faces"; /* api callbacks */ ot->exec = material_slot_assign_exec; @@ -292,7 +292,7 @@ void OBJECT_OT_material_slot_select(wmOperatorType *ot) /* identifiers */ ot->name = "Select Material Slot"; ot->idname = "OBJECT_OT_material_slot_select"; - ot->description = "Select vertices assigned to the selected material slot"; + ot->description = "Select all faces with active material"; /* api callbacks */ ot->exec = material_slot_select_exec; @@ -311,7 +311,7 @@ void OBJECT_OT_material_slot_deselect(wmOperatorType *ot) /* identifiers */ ot->name = "Deselect Material Slot"; ot->idname = "OBJECT_OT_material_slot_deselect"; - ot->description = "Deselect vertices assigned to the selected material slot"; + ot->description = "Deselect all faces with active material"; /* api callbacks */ ot->exec = material_slot_deselect_exec; -- cgit v1.2.3