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:
authorCampbell Barton <ideasman42@gmail.com>2018-08-16 05:15:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-08-16 05:15:04 +0300
commit4e41a44400c32ef80018d3a61ab5bd0a4c5c284c (patch)
tree7f7ab56bdc2475c4303a75dceaab72853584b270 /source/blender/makesrna/intern/rna_brush.c
parent8efd7be41c100fbbd7aff7cb3cf17a97039954a7 (diff)
UI: show +/- icons for fill/deep
Diffstat (limited to 'source/blender/makesrna/intern/rna_brush.c')
-rw-r--r--source/blender/makesrna/intern/rna_brush.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index 0f3e74c567f..8ad77b88702 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -569,8 +569,8 @@ static const EnumPropertyItem *rna_Brush_direction_itemf(bContext *C, PointerRNA
};
static const EnumPropertyItem prop_fill_deepen_items[] = {
- {0, "FILL", 0, "Fill", "Add effect of brush"},
- {BRUSH_DIR_IN, "DEEPEN", 0, "Deepen", "Subtract effect of brush"},
+ {0, "FILL", ICON_ZOOMIN, "Fill", "Add effect of brush"},
+ {BRUSH_DIR_IN, "DEEPEN", ICON_ZOOMOUT, "Deepen", "Subtract effect of brush"},
{0, NULL, 0, NULL, NULL}
};