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 /release/scripts/startup/bl_ui/properties_physics_common.py
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 'release/scripts/startup/bl_ui/properties_physics_common.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_common.py b/release/scripts/startup/bl_ui/properties_physics_common.py
index 9e537e85911..b1c455c697c 100644
--- a/release/scripts/startup/bl_ui/properties_physics_common.py
+++ b/release/scripts/startup/bl_ui/properties_physics_common.py
@@ -217,7 +217,7 @@ def point_cache_ui(self, context, cache, enabled, cachetype):
col.active = can_bake
if cache.is_baked is True:
- col.operator("ptcache.free_bake", text="Free Bake")
+ col.operator("ptcache.free_bake", text="Delete Bake")
else:
col.operator("ptcache.bake", text="Bake").bake = True
@@ -231,7 +231,7 @@ def point_cache_ui(self, context, cache, enabled, cachetype):
col = flow.column()
col.operator("ptcache.bake_all", text="Bake All Dynamics").bake = True
- col.operator("ptcache.free_bake_all", text="Free All Bakes")
+ col.operator("ptcache.free_bake_all", text="Delete All Bakes")
col.operator("ptcache.bake_all", text="Update All To Frame").bake = False