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:
authorDalai Felinto <dalai@blender.org>2020-10-02 13:24:59 +0300
committerDalai Felinto <dalai@blender.org>2020-10-02 15:05:13 +0300
commit92a0ec87a241fb279f8362e5f2d7cc2c4e57c6d1 (patch)
treeab7be7756e9189bb7ce54f29b276275263329e70 /source/blender/makesrna
parent5476017d070b182d39672a40f404173cf1932994 (diff)
Experimental Features: Rename Image editor option
This prevents having multiple UI strings starting exactly the same: * Legacy A... * Legacy B ...
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c2
1 files changed, 1 insertions, 1 deletions
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);