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>2021-09-02 17:23:13 +0300
committerAntonio Vazquez <blendergit@gmail.com>2021-09-02 17:26:13 +0300
commit6fc92b296fae474c5b9bb2ea996f51cef75bd9c6 (patch)
treeec3152d4d6dd81bedb371b938189daab4490b56e /release/scripts/startup/bl_app_templates_system
parent8849bed67199f9f0ceb6ea6c92feec2281bbb9af (diff)
GPencil: Change default Scale Thickness to True in 2D template
This parameter is more logic as true because is better scale thickness when the size of the stroke changes. Reviewed by: @mendio @pepeland
Diffstat (limited to 'release/scripts/startup/bl_app_templates_system')
-rw-r--r--release/scripts/startup/bl_app_templates_system/2D_Animation/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_app_templates_system/2D_Animation/__init__.py b/release/scripts/startup/bl_app_templates_system/2D_Animation/__init__.py
index be47890a002..c8328f5ee42 100644
--- a/release/scripts/startup/bl_app_templates_system/2D_Animation/__init__.py
+++ b/release/scripts/startup/bl_app_templates_system/2D_Animation/__init__.py
@@ -46,6 +46,7 @@ def update_factory_startup_screens():
def update_factory_startup_scenes():
for scene in bpy.data.scenes:
scene.tool_settings.use_keyframe_insert_auto = True
+ scene.tool_settings.gpencil_sculpt.use_scale_thickness = True
def update_factory_startup_grease_pencils():