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
This commit is contained in:
Aaron Carlisle 2021-08-02 20:14:41 -04:00
parent efd7c95bb2
commit 223f048138
1 changed files with 1 additions and 1 deletions

View File

@ -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: