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:
authorAntonioya <blendergit@gmail.com>2018-10-30 14:59:36 +0300
committerAntonioya <blendergit@gmail.com>2018-10-30 14:59:58 +0300
commit500fbfd02a1cae02ecf34d6fe49748b3c1b8ac05 (patch)
tree3976828b8b7a0bae7041d1b9c5d1522e6d21341b /release/scripts/startup/bl_ui/space_topbar.py
parent5f0cee26f059af47877f69c3e0d782d25455a2ad (diff)
GP: Back Stroke projection mode
Back the old 2.7x stroke mode when drawing. This mode try to project the new strokes over the previous strokes.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_topbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index db6c6037e47..31d01fcc891 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -215,6 +215,8 @@ class TOPBAR_HT_lower_bar(Header):
layout.prop(tool_settings, "use_gpencil_draw_onback", text="", icon='XRAY')
layout.prop(tool_settings, "use_gpencil_weight_data_add", text="", icon='WPAINT_HLT')
layout.prop(tool_settings, "use_gpencil_additive_drawing", text="", icon='FREEZE')
+ if tool_settings.gpencil_stroke_placement_view3d == 'STROKE':
+ layout.prop(tool_settings, "use_gpencil_stroke_endpoints", text="", icon='CURVE_DATA')
elif tool_space_type == 'IMAGE_EDITOR':
if tool_mode == 'PAINT':
layout.popover_group(space_type='PROPERTIES', region_type='WINDOW', context=".imagepaint_2d", category="")