UI: Fix wrong icon used for Unified Color toggle

This commit is contained in:
William Reynish 2020-04-13 15:47:41 +02:00
parent 2e75172c45
commit c19f37764d
1 changed files with 1 additions and 1 deletions

View File

@ -902,7 +902,7 @@ def draw_color_settings(context, layout, brush, color_type=False):
UnifiedPaintPanel.prop_unified_color(row, context, brush, "secondary_color", text="")
row.separator()
row.operator("paint.brush_colors_flip", icon='FILE_REFRESH', text="", emboss=False)
row.prop(ups, "use_unified_color", text="", icon='WORLD')
row.prop(ups, "use_unified_color", text="", icon='BRUSHES_ALL')
# Gradient
elif brush.color_type == 'GRADIENT':
layout.template_color_ramp(brush, "gradient", expand=True)