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-02-10 12:54:10 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-02-10 12:54:10 +0400
commit5d4df1a999d65bdfe67cec1088b34d9d47fc5412 (patch)
tree2409cd2edc0e4399a68bb6022081e2e38d0e2b7a /release/scripts/startup/bl_ui/properties_physics_common.py
parentf75ca60a1c55388334a3b85934bd23a122c6b92c (diff)
pep8 cleanup
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_physics_common.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_common.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_common.py b/release/scripts/startup/bl_ui/properties_physics_common.py
index 17a44a523dc..a640cb215ba 100644
--- a/release/scripts/startup/bl_ui/properties_physics_common.py
+++ b/release/scripts/startup/bl_ui/properties_physics_common.py
@@ -44,6 +44,7 @@ def physics_add(self, layout, md, name, type, typeicon, toggles):
else:
sub.operator("object.modifier_add", text=name, icon=typeicon).type = type
+
def physics_add_special(self, layout, data, name, addop, removeop, typeicon):
sub = layout.row(align=True)
if data:
@@ -51,6 +52,7 @@ def physics_add_special(self, layout, data, name, addop, removeop, typeicon):
else:
sub.operator(addop, text=name, icon=typeicon)
+
class PHYSICS_PT_add(PhysicButtonsPanel, Panel):
bl_label = ""
bl_options = {'HIDE_HEADER'}
@@ -86,13 +88,13 @@ class PHYSICS_PT_add(PhysicButtonsPanel, Panel):
physics_add_special(self, col, ob.rigid_body, "Rigid Body",
"rigidbody.object_add",
"rigidbody.object_remove",
- 'MESH_ICOSPHERE') # XXX: need dedicated icon
+ 'MESH_ICOSPHERE') # XXX: need dedicated icon
# all types of objects can have rigid body constraint
physics_add_special(self, col, ob.rigid_body_constraint, "Rigid Body Constraint",
"rigidbody.constraint_add",
"rigidbody.constraint_remove",
- 'CONSTRAINT') # RB_TODO needs better icon
+ 'CONSTRAINT') # RB_TODO needs better icon
# cache-type can be 'PSYS' 'HAIR' 'SMOKE' etc