[Bf-blender-cvs] [223f0481382] master: Fix annotations placement option in the Movie Clip editor

Aaron Carlisle noreply at git.blender.org
Tue Aug 3 02:28:02 CEST 2021


Commit: 223f0481382cc6019c79568f6136c4d59d4ec543
Author: Aaron Carlisle
Date:   Mon Aug 2 20:14:41 2021 -0400
Branches: master
https://developer.blender.org/rB223f0481382cc6019c79568f6136c4d59d4ec543

Fix annotations placement option in the Movie Clip editor

In rB6ee14c966d05362228511756c4906e043b87e346 the enum items were renamed/removed, this change was not propagated to this setting

===================================================================

M	release/scripts/startup/bl_ui/properties_grease_pencil_common.py

===================================================================

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 de743033036..8de6925c051 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -54,7 +54,7 @@ class AnnotationDrawingToolsPanel:
         col.label(text="Stroke Placement:")
         row = col.row(align=True)
         row.prop_enum(tool_settings, "annotation_stroke_placement_view2d", 'VIEW')
-        row.prop_enum(tool_settings, "annotation_stroke_placement_view2d", 'CURSOR', text="Cursor")
+        row.prop_enum(tool_settings, "annotation_stroke_placement_view2d", 'IMAGE', text="Image")
 
 
 class GreasePencilSculptOptionsPanel:



More information about the Bf-blender-cvs mailing list