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:
Diffstat (limited to 'source/blender/editors/render')
-rw-r--r--source/blender/editors/render/render_shading.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/render/render_shading.c b/source/blender/editors/render/render_shading.c
index 53fc82e3482..3026a1058ca 100644
--- a/source/blender/editors/render/render_shading.c
+++ b/source/blender/editors/render/render_shading.c
@@ -927,9 +927,9 @@ static int light_cache_free_exec(bContext *C, wmOperator *UNUSED(op))
void SCENE_OT_light_cache_free(wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Free Light Cache";
+ ot->name = "Delete Light Cache";
ot->idname = "SCENE_OT_light_cache_free";
- ot->description = "Free cached indirect lighting";
+ ot->description = "Delete cached indirect lighting";
/* api callbacks */
ot->exec = light_cache_free_exec;