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:
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_grease_pencil_common.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_grease_pencil_common.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
index 5d09dc8d942..013f4e64854 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -626,9 +626,8 @@ class GreasePencilDataPanel:
layout.separator()
col = layout.column(align=True)
col.label(text="New Stroke Quality:")
- split = col.split()
- split.prop(gpl, "smooth_drawfac")
- split.prop(gpl, "subdivision")
+ col.prop(gpl, "pen_smooth_factor")
+ col.prop(gpl, "pen_subdivision_steps")
class GreasePencilToolsPanel: