From 97e26494eeacc62c04d805f7774b4159300e84b0 Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Sun, 23 Mar 2014 00:01:46 +0200 Subject: Slight cosmetic improvement on UI. Add eyedropper icon to detail sample operator and move it next to the detail slider --- release/scripts/startup/bl_ui/space_view3d_toolbar.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'release') 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") -- cgit v1.2.3