diff --git a/release/scripts/ui/properties_data_modifier.py b/release/scripts/ui/properties_data_modifier.py index dfa0d8029b2..37764e20854 100644 --- a/release/scripts/ui/properties_data_modifier.py +++ b/release/scripts/ui/properties_data_modifier.py @@ -437,7 +437,6 @@ class DATA_PT_modifiers(DataButtonsPanel): col.prop(md, "levels", text="Preview") col.prop(md, "sculpt_levels", text="Sculpt") col.prop(md, "render_levels", text="Render") - col.prop(bpy.context.tool_settings.sculpt, "fast_navigate") if wide_ui: col = split.column() diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index d543d9a4531..7929aa64df7 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -329,8 +329,7 @@ class USERPREF_PT_edit(bpy.types.Panel): col = row.column() row = col.row(align=True) - row.label("Overlay Color:") - row.prop(edit, "sculpt_paint_overlay_col", text="") + row.prop(edit, "sculpt_paint_overlay_col", text="Sculpt Overlay Color") col.separator() col.separator() diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 3d138d906af..8fedf67d1a9 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -1009,6 +1009,10 @@ class VIEW3D_PT_sculpt_options(PaintPanel): col = split.column() + col.prop(sculpt, "use_openmp", text="Threaded Sculpt") + col.prop(sculpt, "fast_navigate") + col.prop(sculpt, "show_brush") + col.label(text="Unified Settings:") col.prop(tool_settings, "sculpt_paint_use_unified_size", text="Size") col.prop(tool_settings, "sculpt_paint_use_unified_strength", text="Strength") @@ -1024,6 +1028,8 @@ class VIEW3D_PT_sculpt_options(PaintPanel): row.prop(sculpt, "lock_y", text="Y", toggle=True) row.prop(sculpt, "lock_z", text="Z", toggle=True) + + class VIEW3D_PT_sculpt_symmetry(PaintPanel): bl_label = "Symmetry" bl_default_closed = True