Cycles Addon:

* Code cleanup
This commit is contained in:
Thomas Dinges
2013-02-21 17:08:13 +00:00
parent d2efd72335
commit 3df2b93c6d
2 changed files with 4 additions and 8 deletions

View File

@@ -21,7 +21,7 @@
bl_info = {
"name": "Cycles Render Engine",
"author": "",
"blender": (2, 60, 5),
"blender": (2, 66, 0),
"location": "Info header, render engine menu",
"description": "Cycles Render Engine integration",
"warning": "",

View File

@@ -1093,13 +1093,9 @@ class CyclesScene_PT_simplify(CyclesButtonsPanel, Panel):
layout.active = rd.use_simplify
split = layout.split()
col = split.column()
col.prop(rd, "simplify_subdivision", text="Subdivision")
col = split.column()
col.prop(rd, "simplify_child_particles", text="Child Particles")
row = layout.row()
row.prop(rd, "simplify_subdivision", text="Subdivision")
row.prop(rd, "simplify_child_particles", text="Child Particles")
def draw_device(self, context):