Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Riakiotakis <kalast@gmail.com>2014-03-31 20:30:51 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-03-31 20:30:51 +0400
commitfa3d9f4fbd1685528e9623e88972bb4f912337a1 (patch)
tree71d19390db7d5f9e1b8079d185e2e7cb8b28d51c /release
parenta5be03b270c77fe0770102e541adf572e6d6f89a (diff)
Make dyntopo detail size maximum smaller (more than 40 pixels should not
be needed according to mapping in code) and change the property to float.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 70ebf6aac79..f5a739a160c 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1259,7 +1259,7 @@ class VIEW3D_PT_sculpt_dyntopo(Panel, View3DPaintPanel):
row.operator("sculpt.sample_detail_size", text="", icon='EYEDROPPER')
row.prop(sculpt, "constant_detail")
else:
- sub.prop(sculpt, "detail_size")
+ sub.prop(sculpt, "detail_size", slider=True)
sub.prop(sculpt, "detail_refine_method", text="")
sub.prop(sculpt, "detail_type_method", text="")
col.separator()