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
path: root/intern
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2013-02-21 21:08:13 +0400
committerThomas Dinges <blender@dingto.org>2013-02-21 21:08:13 +0400
commit3df2b93c6d69601c75bc95ac5358957822cf4db9 (patch)
tree0f415295ea7e6fd640580041c40bd3a52262f90c /intern
parentd2efd7233599b5a2c660166be113c93a684aa071 (diff)
Cycles Addon:
* Code cleanup
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/__init__.py2
-rw-r--r--intern/cycles/blender/addon/ui.py10
2 files changed, 4 insertions, 8 deletions
diff --git a/intern/cycles/blender/addon/__init__.py b/intern/cycles/blender/addon/__init__.py
index 16cfdca8977..526c5658b93 100644
--- a/intern/cycles/blender/addon/__init__.py
+++ b/intern/cycles/blender/addon/__init__.py
@@ -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": "",
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index 0debb549b30..9d2555d3003 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -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):