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 15:52:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-08-15 15:56:53 +0300
commit09b3566b5e92081403a83e78e19a278c6bab62be (patch)
tree8fba639c1b2001ff459d6698c9b00239579dea8a /source/blender/windowmanager/intern/wm_operator_props.c
parent5d15e68743fc92b41a85ef4180628427ab3b86da (diff)
UI: correct selection operation names
Diffstat (limited to 'source/blender/windowmanager/intern/wm_operator_props.c')
-rw-r--r--source/blender/windowmanager/intern/wm_operator_props.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/windowmanager/intern/wm_operator_props.c b/source/blender/windowmanager/intern/wm_operator_props.c
index 5e821632c79..12d3f07795f 100644
--- a/source/blender/windowmanager/intern/wm_operator_props.c
+++ b/source/blender/windowmanager/intern/wm_operator_props.c
@@ -258,8 +258,8 @@ void WM_operator_properties_select_operation(wmOperatorType *ot)
{SEL_OP_ADD, "ADD", 0, "Add", ""},
{SEL_OP_SUB, "SUB", 0, "Subtract", ""},
{SEL_OP_SET, "SET", 0, "New", ""},
- {SEL_OP_AND, "AND", 0, "Difference", ""},
- {SEL_OP_XOR, "XOR", 0, "Intersect", ""},
+ {SEL_OP_XOR, "XOR", 0, "Difference", ""},
+ {SEL_OP_AND, "AND", 0, "Intersect", ""},
{0, NULL, 0, NULL, NULL}
};
PropertyRNA *prop = RNA_def_enum(ot->srna, "mode", select_mode_items, SEL_OP_ADD, "Mode", "");