From 84c8c331b493d541ccb2db4466639fb4016632ae Mon Sep 17 00:00:00 2001 From: Falk David Date: Wed, 12 Jul 2023 11:59:20 +0200 Subject: [PATCH] Fix: Complier error The commit 64887c80a2a93036073c85f280ce78dcc363e0ee declared rna_enum_grease_pencil_selectmode_items as static, when it should have not been static. --- source/blender/makesrna/intern/rna_scene.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_scene.cc b/source/blender/makesrna/intern/rna_scene.cc index 24e56b98ead..36a9c43f79e 100644 --- a/source/blender/makesrna/intern/rna_scene.cc +++ b/source/blender/makesrna/intern/rna_scene.cc @@ -685,7 +685,7 @@ static const EnumPropertyItem snap_to_items[] = { {0, nullptr, 0, nullptr, nullptr}, }; -static const EnumPropertyItem rna_enum_grease_pencil_selectmode_items[] = { +const EnumPropertyItem rna_enum_grease_pencil_selectmode_items[] = { {GP_SELECTMODE_POINT, "POINT", ICON_GP_SELECT_POINTS, "Point", "Select only points"}, {GP_SELECTMODE_STROKE, "STROKE", ICON_GP_SELECT_STROKES, "Stroke", "Select all stroke points"}, {GP_SELECTMODE_SEGMENT,