From 63b8cf45187edd5f68486773119c8385ac4bc277 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 1 Jul 2020 13:11:39 +1000 Subject: Cleanup: python enum quoting --- release/scripts/startup/bl_ui/space_toolsystem_toolbar.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'release') 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") -- cgit v1.2.3