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>2020-07-01 06:11:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-07-01 06:11:39 +0300
commit63b8cf45187edd5f68486773119c8385ac4bc277 (patch)
treea791115cc410963f5eea208ef8c33b743acc3e82 /release
parent38bbd783b38d0537c8056414a933ef75cd41f941 (diff)
Cleanup: python enum quoting
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_toolbar.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index 54e8fd52ec7..2391678b99b 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -1224,10 +1224,10 @@ class _defs_sculpt:
layout.prop(props, "strength")
layout.prop(props, "deform_axis")
layout.prop(props, "use_face_sets")
- if (props.type == "SURFACE_SMOOTH"):
+ if props.type == 'SURFACE_SMOOTH':
layout.prop(props, "surface_smooth_shape_preservation", expand=False)
layout.prop(props, "surface_smooth_current_vertex", expand=False)
- if (props.type == "SHARPEN"):
+ elif props.type == 'SHARPEN':
layout.prop(props, "sharpen_smooth_ratio", expand=False)
return dict(
@@ -1263,7 +1263,7 @@ class _defs_sculpt:
def draw_settings(_context, layout, tool):
props = tool.operator_properties("sculpt.color_filter")
layout.prop(props, "type", expand=False)
- if (props.type == "FILL"):
+ if props.type == 'FILL':
layout.prop(props, "fill_color", expand=False)
layout.prop(props, "strength")