Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2012-05-09 23:40:54 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2012-05-09 23:40:54 +0400
commita986ece4b3991fcd678babe8ebb67a0e5187f10c (patch)
treeba99fb509270bbda5e3329e19b5597518420b198 /source/blender/editors/render/render_shading.c
parentcd85e5b31789c0058a71b1493a9ff58b95481cc4 (diff)
fix: #31374 Wrong/Missleading hint texts in material assignment. (as clarified with Daniel Salazar & Campbell Barton)
Diffstat (limited to 'source/blender/editors/render/render_shading.c')
-rw-r--r--source/blender/editors/render/render_shading.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/render/render_shading.c b/source/blender/editors/render/render_shading.c
index 883eb118800..95312c07df1 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 active material to selected faces";
+ ot->description = "Assign active material slot to selection";
/* 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 all faces with active material";
+ ot->description = "Select by active material slot";
/* 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 all faces with active material";
+ ot->description = "Deselect by active material slot";
/* api callbacks */
ot->exec = material_slot_deselect_exec;