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:
authorMatt Ebb <matt@mke3.net>2010-01-15 10:26:38 +0300
committerMatt Ebb <matt@mke3.net>2010-01-15 10:26:38 +0300
commit0e8dd13c48abc1e9d8afc0fd8e1dbc2dadfe989b (patch)
tree8af450043562e7a6d199787d06063adb755fe340 /release/scripts/ui/properties_texture.py
parent3664670f2a06de5974ac1a36e3521fc0eab1ff61 (diff)
Fix [#20437] Impossible to load "voxel data" sequence file from
texture panel (field missing?)
Diffstat (limited to 'release/scripts/ui/properties_texture.py')
-rw-r--r--release/scripts/ui/properties_texture.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py
index 7b70b355731..7aafc3a839f 100644
--- a/release/scripts/ui/properties_texture.py
+++ b/release/scripts/ui/properties_texture.py
@@ -853,6 +853,8 @@ class TEXTURE_PT_voxeldata(TextureButtonsPanel):
layout.prop(vd, "resolution")
elif vd.file_format == 'SMOKE':
layout.prop(vd, "domain_object")
+ elif vd.file_format == 'IMAGE_SEQUENCE':
+ layout.template_image(tex, "image", tex.image_user)
layout.prop(vd, "still")
row = layout.row()