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-01-24 01:27:14 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-24 01:27:14 +0300
commit41a7dd383cc77566655a60e35e74ec1276d04020 (patch)
tree9d8b2572adaed178111da2f60f12e9e009a0badd /release
parent32c2e941e639c6e6e6eb5c60ceacdf360eb13d03 (diff)
Cleanup: style
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 2c95a9207ec..321e61ac092 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -271,8 +271,9 @@ class VIEW3D_PT_tools_brush(Panel, View3DPaintPanel):
brush_basic_sculpt_settings(col, context, brush)
# topology_rake_factor
- if capabilities.has_topology_rake and \
- context.sculpt_object.use_dynamic_topology_sculpting:
+ if (capabilities.has_topology_rake and
+ context.sculpt_object.use_dynamic_topology_sculpting
+ ):
col.separator()
row = col.row()
row.prop(brush, "topology_rake_factor", slider=True)