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-27 13:19:00 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-03-27 13:20:55 +0300
commite9df0e53d1dbc60c071e9de9b5ab99c705db7bb2 (patch)
tree51f024b9fc293269dca5078e8156caf3e15a7bbb /release
parent89ea3e73ee08804bd3c6f0f322e5634fb3a73da1 (diff)
Use the last valid cache modifier output file for reading into the
dupli cache. This makes the cache modifier stack work more like actual modifiers: Each will take the previous result and write it into its own output file. The last output is the final result used for viewport display.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_object.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py
index 8fd90b96f23..b0a33b517a6 100644
--- a/release/scripts/startup/bl_ui/properties_object.py
+++ b/release/scripts/startup/bl_ui/properties_object.py
@@ -332,6 +332,9 @@ class OBJECT_PT_duplication(ObjectButtonsPanel, Panel):
row.prop(md, "name", text="")
row.operator("cachelibrary.remove_modifier", icon='X', text="", emboss=False)
+ row = layout.row()
+ row.prop(md, "filepath")
+
# match enum type to our functions, avoids a lookup table.
getattr(self, md.type)(layout, cachelib, md)