Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-09-08 09:35:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-08 09:35:13 +0400
commit1225c1db9b5b57ad1db3233cb3bd8bf75061be3b (patch)
treed6653ba728d9814df478385187f07b2ac969c1e3 /system_demo_mode
parentb25a7c909950ef9d8d0528150fc6f761b73ab6f0 (diff)
someone broke demo mode ui. tsk tsk
Diffstat (limited to 'system_demo_mode')
-rw-r--r--system_demo_mode/__init__.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/system_demo_mode/__init__.py b/system_demo_mode/__init__.py
index 2a7863cc..a1a0a2e5 100644
--- a/system_demo_mode/__init__.py
+++ b/system_demo_mode/__init__.py
@@ -111,15 +111,15 @@ class DemoModeSetup(bpy.types.Operator):
layout.prop(self, "run")
- col.label("Generate Settings:")
- row = col.row()
+ layout.label("Generate Settings:")
+ row = layout.row()
row.prop(self, "mode", expand=True)
- col.prop(self, "random_order")
+ layout.prop(self, "random_order")
mode = self.mode
- col.separator()
- sub = col.column()
+ layout.separator()
+ sub = layout.column()
sub.active = (mode in ('AUTO', 'PLAY'))
sub.label("Animate Settings:")
sub.prop(self, "anim_cycles")
@@ -127,8 +127,8 @@ class DemoModeSetup(bpy.types.Operator):
sub.prop(self, "anim_time_max")
sub.prop(self, "anim_screen_switch")
- col.separator()
- sub = col.column()
+ layout.separator()
+ sub = layout.column()
sub.active = (mode in ('AUTO', 'RENDER'))
sub.label("Render Settings:")
sub.prop(self, "display_render")