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-23 02:01:46 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-03-23 02:01:46 +0400
commit97e26494eeacc62c04d805f7774b4159300e84b0 (patch)
treefa3b1899b5fd3e95e7955c25f9896bfc2f83930c /release
parente732c5809c2be01a0c622987bf9fbe7b37d3ed4c (diff)
Slight cosmetic improvement on UI. Add eyedropper icon to detail sample
operator and move it next to the detail slider
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index b67c8effa3f..7fb3ef82255 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1240,7 +1240,9 @@ class VIEW3D_PT_sculpt_topology(Panel, View3DPaintPanel):
sub = col.column(align=True)
sub.active = brush and brush.sculpt_tool not in ('MASK')
if (sculpt.detail_type_method == 'CONSTANT'):
- sub.prop(sculpt, "constant_detail")
+ row = sub.row(align=True)
+ row.operator("sculpt.sample_detail_size", text="", icon='EYEDROPPER')
+ row.prop(sculpt, "constant_detail")
else:
sub.prop(sculpt, "detail_size")
sub.prop(sculpt, "detail_refine_method", text="")
@@ -1249,7 +1251,6 @@ class VIEW3D_PT_sculpt_topology(Panel, View3DPaintPanel):
col.prop(sculpt, "use_smooth_shading")
col.operator("sculpt.optimize")
if (sculpt.detail_type_method == 'CONSTANT'):
- col.operator("sculpt.sample_detail_size")
col.operator("sculpt.detail_flood_fill")
col.separator()
col.prop(sculpt, "symmetrize_direction")