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:
authorCampbell Barton <ideasman42@gmail.com>2013-12-18 08:34:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-18 08:34:56 +0400
commit509f1690112bd4aa4fd5f0c537b74422de1d4bfe (patch)
tree664e0858420a2932b52409c8efcea8e6b410150b /release/scripts/startup/bl_ui/properties_object.py
parente9e08a1d12594eab0e341049fc252ff8578e9333 (diff)
Style Cleanup
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_object.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_object.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py
index dcd32b17cbd..38975b8459d 100644
--- a/release/scripts/startup/bl_ui/properties_object.py
+++ b/release/scripts/startup/bl_ui/properties_object.py
@@ -130,7 +130,7 @@ class OBJECT_MT_lod_tools(Menu):
def draw(self, context):
layout = self.layout
-
+
layout.operator("object.lod_by_name", text="Set By Name")
layout.operator("object.lod_generate", text="Generate")
layout.operator("object.lod_clear_all", text="Clear All", icon='PANEL_CLOSE')
@@ -151,7 +151,8 @@ class OBJECT_PT_levels_of_detail(ObjectButtonsPanel, Panel):
col = layout.column()
for i, level in enumerate(ob.lod_levels):
- if i == 0: continue
+ if i == 0:
+ continue
box = col.box()
row = box.row()
row.prop(level, "object", text="")