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-05-07 13:17:00 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-05-07 13:17:00 +0300
commit45a77ba09dbe8c51084c0aaa80f884a9954459cf (patch)
tree8c7746e16db023c4654ea0e0b5bd989d9f4e61b9 /release/scripts/startup/bl_ui/properties_grease_pencil_common.py
parentebd7e87f33ffad86cad81dbe764fa7e424e42ce0 (diff)
parent3fed85f9d2cfcd120c58599e55b4518e62281ee1 (diff)
Merge branch 'blender-v2.83-release'
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.py6
1 files changed, 3 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 fea4406cb8c..5bb2fe1a7e4 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -116,9 +116,9 @@ class AnnotationDrawingToolsPanel:
col.label(text="Data Source:")
row = col.row(align=True)
if is_3d_view:
- row.prop(context.tool_settings, "grease_pencil_source", expand=True)
+ row.prop(context.tool_settings, "annotation_source", expand=True)
elif is_clip_editor:
- row.prop(context.space_data, "grease_pencil_source", expand=True)
+ row.prop(context.space_data, "annotation_source", expand=True)
gpencil_stroke_placement_settings(context, col)
@@ -477,7 +477,7 @@ class AnnotationDataPanel:
# Owner selector.
if context.space_data.type == 'CLIP_EDITOR':
- layout.row().prop(context.space_data, "grease_pencil_source", expand=True)
+ layout.row().prop(context.space_data, "annotation_source", expand=True)
layout.template_ID(gpd_owner, "grease_pencil", new="gpencil.annotation_add", unlink="gpencil.data_unlink")