[Bf-blender-cvs] [92a0ec87a24] master: Experimental Features: Rename Image editor option

Dalai Felinto noreply at git.blender.org
Fri Oct 2 14:05:15 CEST 2020


Commit: 92a0ec87a241fb279f8362e5f2d7cc2c4e57c6d1
Author: Dalai Felinto
Date:   Fri Oct 2 12:24:59 2020 +0200
Branches: master
https://developer.blender.org/rB92a0ec87a241fb279f8362e5f2d7cc2c4e57c6d1

Experimental Features: Rename Image editor option

This prevents having multiple UI strings starting exactly the same:
* Legacy A...
* Legacy B ...

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

M	source/blender/makesrna/intern/rna_userdef.c

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

diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 9477f99e826..2e9838d689b 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -6168,7 +6168,7 @@ static void rna_def_userdef_experimental(BlenderRNA *brna)
   prop = RNA_def_property(srna, "use_image_editor_legacy_drawing", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "use_image_editor_legacy_drawing", 1);
   RNA_def_property_ui_text(
-      prop, "Legacy Image Editor Drawing", "Use legacy UV/Image editor drawing");
+      prop, "Image Editor Legacy Drawing", "Use legacy UV/Image editor drawing");
 
   prop = RNA_def_property(srna, "use_tools_missing_icons", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "use_tools_missing_icons", 1);



More information about the Bf-blender-cvs mailing list