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:
authorJoshua Leung <aligorith@gmail.com>2016-03-27 17:20:15 +0300
committerJoshua Leung <aligorith@gmail.com>2016-03-27 17:21:31 +0300
commit2bb956f6c90cf9f1055e46b1334e50d76f5f91dd (patch)
treec4be26965a7e164026a9417c6548b21d2cef9168 /release
parentfd8f51da0854eb280689adc690b61051f7bdac51 (diff)
GPencil: Smooth and Subdivision variable/setting naming
On second thought, these might be better names for these... I'm still not 100% happy with these, but they will do for now. (Best results currently seem to be with smooth 0.7, and subdivision steps 1 or 2)
Diffstat (limited to 'release')
-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: