[Bf-blender-cvs] [3c9c6507ac3] blender2.8: UI: adjust names for select operations

Campbell Barton noreply at git.blender.org
Wed Aug 15 08:10:19 CEST 2018


Commit: 3c9c6507ac31073d1a01ebf6abe6a0fff78d412b
Author: Campbell Barton
Date:   Wed Aug 15 16:11:41 2018 +1000
Branches: blender2.8
https://developer.blender.org/rB3c9c6507ac31073d1a01ebf6abe6a0fff78d412b

UI: adjust names for select operations

===================================================================

M	source/blender/windowmanager/intern/wm_operator_props.c

===================================================================

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", "");



More information about the Bf-blender-cvs mailing list