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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-31 21:49:47 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-31 21:49:47 +0300
commit8c2a978b03f71e759908da0a360b4c7eed329597 (patch)
tree0e2ff051db7e77e385710296c584df7d14bcc95a /source/blender/editors/physics/physics_pointcache.c
parent27d799698d5af604c87e792c519df463cd6c33ff (diff)
UI: rename Free Bake to Delete Bake.
"Free" is more of a programming term related to memory allocation, not a term we need to use in the interface. Ref T61054.
Diffstat (limited to 'source/blender/editors/physics/physics_pointcache.c')
-rw-r--r--source/blender/editors/physics/physics_pointcache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/physics/physics_pointcache.c b/source/blender/editors/physics/physics_pointcache.c
index fcfbe5dca36..1921f7b94b0 100644
--- a/source/blender/editors/physics/physics_pointcache.c
+++ b/source/blender/editors/physics/physics_pointcache.c
@@ -288,9 +288,9 @@ void PTCACHE_OT_bake_all(wmOperatorType *ot)
void PTCACHE_OT_free_bake_all(wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Free All Physics Bakes";
+ ot->name = "Delete All Physics Bakes";
ot->idname = "PTCACHE_OT_free_bake_all";
- ot->description = "Free all baked caches of all objects in the current scene";
+ ot->description = "Delete all baked caches of all objects in the current scene";
/* api callbacks */
ot->exec = ptcache_free_bake_all_exec;
@@ -346,8 +346,8 @@ void PTCACHE_OT_bake(wmOperatorType *ot)
void PTCACHE_OT_free_bake(wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Free Physics Bake";
- ot->description = "Free physics bake";
+ ot->name = "Delete Physics Bake";
+ ot->description = "Delete physics bake";
ot->idname = "PTCACHE_OT_free_bake";
/* api callbacks */