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:
authorAntonio Vazquez <blendergit@gmail.com>2020-03-25 19:16:25 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-03-25 20:46:45 +0300
commitacd84ab10524638fce848631d6f87f1c2ead507a (patch)
treece9f9a821c2597e656c1f51c7ee2e7e1b03b226a /release
parentd7514914894e9c96c9eab21fb625a2021aaa71cb (diff)
GPencil: Fix unreported missing parameter for Cutter tool
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 0d51bef0d8d..4f4272c879a 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -393,7 +393,7 @@ class _draw_tool_settings_context_mode:
}:
# is_paint = False
pass
- elif tool.idname == "Cutter":
+ elif tool.idname == "builtin.cutter":
row = layout.row(align=True)
row.prop(context.tool_settings.gpencil_sculpt, "intersection_threshold")
return False