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>2019-06-21 01:36:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-21 01:36:03 +0300
commitd2e474d043abf8eca750abc1475fd99b08a77a45 (patch)
tree35ecf8d7f7b9eee91d249dd6a79985b0a1d55723 /release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
parent91b8e24db3bce0d45203dcaf720bbbf472a59c1d (diff)
Cleanup: use trailing commas for multi-line arguments
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py b/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
index 2b8e488cbe9..7e4f9e8370f 100644
--- a/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
+++ b/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
@@ -150,7 +150,7 @@ class PHYSICS_PT_dynamic_paint_settings(PhysicButtonsPanel, Panel):
row = layout.row()
row.template_list(
"PHYSICS_UL_dynapaint_surfaces", "", canvas, "canvas_surfaces",
- canvas.canvas_surfaces, "active_index", rows=1
+ canvas.canvas_surfaces, "active_index", rows=1,
)
col = row.column(align=True)
@@ -163,7 +163,7 @@ class PHYSICS_PT_dynamic_paint_settings(PhysicButtonsPanel, Panel):
if surface:
flow = layout.grid_flow(
- row_major=True, columns=0, even_columns=True, even_rows=False, align=False
+ row_major=True, columns=0, even_columns=True, even_rows=False, align=False,
)
col = flow.column()
@@ -191,7 +191,7 @@ class PHYSICS_PT_dynamic_paint_settings(PhysicButtonsPanel, Panel):
layout.use_property_split = True
flow = layout.grid_flow(
- row_major=True, columns=0, even_columns=True, even_rows=False, align=False
+ row_major=True, columns=0, even_columns=True, even_rows=False, align=False,
)
col = flow.column()
col.prop(brush, "paint_color")