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-15 09:11:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-08-15 09:12:39 +0300
commit3c9c6507ac31073d1a01ebf6abe6a0fff78d412b (patch)
tree628e79be32dd7fc1ae44bae4429c68442a4edfe7 /source/blender/windowmanager/intern/wm_operator_props.c
parentf7c1716b6cb79d0e4f31b3b449d0c565970db7e7 (diff)
UI: adjust names for select operations
Diffstat (limited to 'source/blender/windowmanager/intern/wm_operator_props.c')
-rw-r--r--source/blender/windowmanager/intern/wm_operator_props.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/windowmanager/intern/wm_operator_props.c b/source/blender/windowmanager/intern/wm_operator_props.c
index ceb0fb75f78..5e821632c79 100644
--- a/source/blender/windowmanager/intern/wm_operator_props.c
+++ b/source/blender/windowmanager/intern/wm_operator_props.c
@@ -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", "");