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:
authorHans Goudey <h.goudey@me.com>2022-05-11 13:12:11 +0300
committerHans Goudey <h.goudey@me.com>2022-05-11 13:12:11 +0300
commitb765ea52af025b392604538058c135440bd354c2 (patch)
tree7200788183416b03bda42ec6e15297e4b1ef1dbe /release/scripts/startup/bl_ui
parent2f799f893ea7d307f8288f9590ec66a2c35f244e (diff)
Cleanup: Use single quotes for Python enum string
Diffstat (limited to 'release/scripts/startup/bl_ui')
-rw-r--r--release/scripts/startup/bl_ui/properties_paint_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_paint_common.py b/release/scripts/startup/bl_ui/properties_paint_common.py
index 649e09fdfaa..e3decd7fcdd 100644
--- a/release/scripts/startup/bl_ui/properties_paint_common.py
+++ b/release/scripts/startup/bl_ui/properties_paint_common.py
@@ -840,7 +840,7 @@ def brush_shared_settings(layout, context, brush, popover=False):
if mode == 'SCULPT_CURVES':
size = True
strength = True
- direction = brush.curves_sculpt_tool == "GROW_SHRINK"
+ direction = brush.curves_sculpt_tool == 'GROW_SHRINK'
### Draw settings. ###
ups = context.scene.tool_settings.unified_paint_settings