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@pandora.be>2013-09-23 16:14:06 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-09-23 16:14:06 +0400
commit0d524d1809ca9f27445ea5768fcb9b88e98ac85f (patch)
treee7eb6d43232f1dba127a3d7367ec944505401668 /release
parentd4c67adb5af54a12a65f2dfd2740846749e3c32b (diff)
Further fix for #36382: bake buttons for linked objects could be grayed out
when they shouldn't be.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_common.py b/release/scripts/startup/bl_ui/properties_physics_common.py
index 26587472566..22c71c233c2 100644
--- a/release/scripts/startup/bl_ui/properties_physics_common.py
+++ b/release/scripts/startup/bl_ui/properties_physics_common.py
@@ -180,7 +180,7 @@ def point_cache_ui(self, context, cache, enabled, cachetype):
layout.separator()
- if cache.id_data.library:
+ if cache.id_data.library and not cache.use_disk_cache:
can_bake = False
col = layout.column(align=True)