Skip to content
Snippets Groups Projects
Commit cdf8ce6d authored by Philipp Oeser's avatar Philipp Oeser
Browse files

Fix T57742: Sculpt/Paint Brush Menus fails to display constant detail

resolution

thx Tomas(MuscleLord) for spotting this!
parent 92895af5
No related branches found
No related tags found
No related merge requests found
...@@ -59,8 +59,8 @@ class DynDetailMenu(Menu): ...@@ -59,8 +59,8 @@ class DynDetailMenu(Menu):
slider_setting = "detail_size" slider_setting = "detail_size"
elif bpy.context.tool_settings.sculpt.detail_type_method == 'CONSTANT': elif bpy.context.tool_settings.sculpt.detail_type_method == 'CONSTANT':
datapath = "tool_settings.sculpt.constant_detail" datapath = "tool_settings.sculpt.constant_detail_resolution"
slider_setting = "constant_detail" slider_setting = "constant_detail_resolution"
else: else:
datapath = "tool_settings.sculpt.detail_percent" datapath = "tool_settings.sculpt.detail_percent"
slider_setting = "detail_percent" slider_setting = "detail_percent"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment