* moved Threaded Sculpt, Fast Navigate, and Show Brush back to Sculpt Options panel until they are properly moved in memory to the corresponding places they were in the UI.

Fast Navigate apparently needs to be made an option of the multires modifier

Threaded Sculpt and Show Brush need to be made UserPrefs

Some of these options were removed form UserPref panel without placing them anywhere else in the interface so this commit at least puts them somewhere so they can be used.
This commit is contained in:
Jason Wilkins 2010-07-28 07:19:54 +00:00
parent f2e1136ca3
commit 3c0ed589c1
3 changed files with 7 additions and 3 deletions

@ -437,7 +437,6 @@ class DATA_PT_modifiers(DataButtonsPanel):
col.prop(md, "levels", text="Preview") col.prop(md, "levels", text="Preview")
col.prop(md, "sculpt_levels", text="Sculpt") col.prop(md, "sculpt_levels", text="Sculpt")
col.prop(md, "render_levels", text="Render") col.prop(md, "render_levels", text="Render")
col.prop(bpy.context.tool_settings.sculpt, "fast_navigate")
if wide_ui: if wide_ui:
col = split.column() col = split.column()

@ -329,8 +329,7 @@ class USERPREF_PT_edit(bpy.types.Panel):
col = row.column() col = row.column()
row = col.row(align=True) row = col.row(align=True)
row.label("Overlay Color:") row.prop(edit, "sculpt_paint_overlay_col", text="Sculpt Overlay Color")
row.prop(edit, "sculpt_paint_overlay_col", text="")
col.separator() col.separator()
col.separator() col.separator()

@ -1009,6 +1009,10 @@ class VIEW3D_PT_sculpt_options(PaintPanel):
col = split.column() 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.label(text="Unified Settings:")
col.prop(tool_settings, "sculpt_paint_use_unified_size", text="Size") col.prop(tool_settings, "sculpt_paint_use_unified_size", text="Size")
col.prop(tool_settings, "sculpt_paint_use_unified_strength", text="Strength") 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_y", text="Y", toggle=True)
row.prop(sculpt, "lock_z", text="Z", toggle=True) row.prop(sculpt, "lock_z", text="Z", toggle=True)
class VIEW3D_PT_sculpt_symmetry(PaintPanel): class VIEW3D_PT_sculpt_symmetry(PaintPanel):
bl_label = "Symmetry" bl_label = "Symmetry"
bl_default_closed = True bl_default_closed = True