"Fix" for [#23863] Smoke Voxel Data Still Frame Number doesn't work

* Not supported currently so hidden in ui.
* Could be a nice option for later, but will need some proper thought put into the implementation.
This commit is contained in:
Janne Karhu 2010-10-08 08:56:04 +00:00
parent c79e054538
commit 86e77bc532

@ -864,10 +864,11 @@ class TEXTURE_PT_voxeldata(TextureButtonsPanel, bpy.types.Panel):
layout.template_image(tex, "image", tex.image_user, compact=True)
#layout.prop(vd, "frame_duration")
layout.prop(vd, "use_still_frame")
row = layout.row()
row.active = vd.use_still_frame
row.prop(vd, "still_frame")
if vd.file_format in ('BLENDER_VOXEL', 'RAW_8BIT'):
layout.prop(vd, "use_still_frame")
row = layout.row()
row.active = vd.use_still_frame
row.prop(vd, "still_frame")
layout.prop(vd, "interpolation")
layout.prop(vd, "extension")