Fix wrong variable name in Sculpt Vertex Colors experimental check

Reviewed By: sergey

Differential Revision: https://developer.blender.org/D8269
This commit is contained in:
Pablo Dobarro 2020-07-10 23:00:21 +02:00
parent eb3f74a0fe
commit 1076952209
1 changed files with 1 additions and 1 deletions

View File

@ -812,7 +812,7 @@ class VIEW3D_PT_sculpt_voxel_remesh(Panel, View3DPaintPanel):
col.prop(mesh, "use_remesh_preserve_volume", text="Volume")
col.prop(mesh, "use_remesh_preserve_paint_mask", text="Paint Mask")
col.prop(mesh, "use_remesh_preserve_sculpt_face_sets", text="Face Sets")
if preferences.experimental.use_preserver_vertex_colors:
if context.preferences.experimental.use_sculpt_vertex_colors:
col.prop(mesh, "use_remesh_preserve_vertex_colors", text="Vertex Colors")