UI: show +/- icons for fill/deep

This commit is contained in:
Campbell Barton 2018-08-16 12:15:04 +10:00
parent 8efd7be41c
commit 4e41a44400
Notes: blender-bot 2023-02-14 05:53:38 +01:00
Referenced by issue #55036, Tool System Todo
1 changed files with 2 additions and 2 deletions

View File

@ -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}
};