UI: adjust names for select operations

This commit is contained in:
Campbell Barton 2018-08-15 16:11:41 +10:00
parent f7c1716b6c
commit 3c9c6507ac
1 changed files with 3 additions and 3 deletions

View File

@ -257,9 +257,9 @@ void WM_operator_properties_select_operation(wmOperatorType *ot)
static const EnumPropertyItem select_mode_items[] = {
{SEL_OP_ADD, "ADD", 0, "Add", ""},
{SEL_OP_SUB, "SUB", 0, "Subtract", ""},
{SEL_OP_SET, "SET", 0, "Set", ""},
{SEL_OP_AND, "AND", 0, "And", ""},
{SEL_OP_XOR, "XOR", 0, "Xor", ""},
{SEL_OP_SET, "SET", 0, "New", ""},
{SEL_OP_AND, "AND", 0, "Difference", ""},
{SEL_OP_XOR, "XOR", 0, "Intersect", ""},
{0, NULL, 0, NULL, NULL}
};
PropertyRNA *prop = RNA_def_enum(ot->srna, "mode", select_mode_items, SEL_OP_ADD, "Mode", "");