Fix: GPv3: Missing active vertex paint tool settings in side panel

Wrong context string for gpv3 vertex paint mode.
`.greasepencil_vertex` is being used in `GreasePencilVertexPanel`

Pull Request: https://projects.blender.org/blender/blender/pulls/129285
This commit is contained in:
Pratik Borhade
2024-10-21 11:21:16 +02:00
committed by Falk David
parent bce20b935c
commit 5ffab634d8

View File

@@ -1728,7 +1728,7 @@ void ED_view3d_buttons_region_layout_ex(const bContext *C,
ARRAY_SET_ITEMS(contexts, ".greasepencil_weight");
break;
case CTX_MODE_VERTEX_GREASE_PENCIL:
ARRAY_SET_ITEMS(contexts, ".grease_pencil_vertex");
ARRAY_SET_ITEMS(contexts, ".greasepencil_vertex");
break;
case CTX_MODE_EDIT_POINT_CLOUD:
ARRAY_SET_ITEMS(contexts, ".point_cloud_edit");