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:
authorLukas Tönne <lukas.toenne@gmail.com>2015-03-30 13:41:29 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-03-30 13:41:29 +0300
commite0cf04c6d4be09988f3a1723b1cd18d8c7e6bbdd (patch)
tree1c227a7feac84077ff57e289c687d1a3d8615c0e /release
parent892644a44c4b53f873c9b99f07e2e20f09dd3c3d (diff)
`cachelibrary.modifier_bake operator` has been removed in favor of
`cachelibrary.bake`.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_object.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py
index 70fa8f2bb8d..5c81aead30c 100644
--- a/release/scripts/startup/bl_ui/properties_object.py
+++ b/release/scripts/startup/bl_ui/properties_object.py
@@ -336,7 +336,7 @@ class OBJECT_PT_duplication(ObjectButtonsPanel, Panel):
col = layout.column(align=True)
col.prop(md, "filepath")
- col.operator("cachelibrary.modifier_bake", text="Bake")
+ col.operator("cachelibrary.bake", text="Bake")
# match enum type to our functions, avoids a lookup table.
getattr(self, md.type)(layout, cachelib, md)