[Bf-blender-cvs] [d31ca35c614] master: Fix outdated user preference descriptions.

Brecht Van Lommel noreply at git.blender.org
Wed Jan 16 19:29:40 CET 2019


Commit: d31ca35c6142c6922f7eb9075f328e305f57849e
Author: Brecht Van Lommel
Date:   Wed Jan 16 18:48:58 2019 +0100
Branches: master
https://developer.blender.org/rBd31ca35c6142c6922f7eb9075f328e305f57849e

Fix outdated user preference descriptions.

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

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 e0a15422b29..5f5450e3045 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -3775,11 +3775,9 @@ static void rna_def_userdef_view(BlenderRNA *brna)
 	                         "Color range used for weight visualization in weight painting mode");
 	RNA_def_property_update(prop, 0, "rna_UserDef_weight_color_update");
 
-
-	/* app flags (use for app-templates) */
 	prop = RNA_def_property(srna, "show_layout_ui", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_negative_sdna(prop, NULL, "app_flag", USER_APP_LOCK_UI_LAYOUT);
-	RNA_def_property_ui_text(prop, "Show Layout Widgets", "Show screen layout editing UI");
+	RNA_def_property_ui_text(prop, "Editor Corner Splitting", "Split and join editors by dragging from corners");
 	RNA_def_property_update(prop, 0, "rna_userdef_update_ui");
 
 	/* menus */
@@ -4425,7 +4423,7 @@ static void rna_def_userdef_system(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "use_region_overlap", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "uiflag2", USER_REGION_OVERLAP);
 	RNA_def_property_ui_text(prop, "Region Overlap",
-	                         "Draw tool/property regions over the main region, when using Triple Buffer");
+	                         "Draw tool/property regions over the main region");
 	RNA_def_property_update(prop, 0, "rna_userdef_dpi_update");
 
 	prop = RNA_def_property(srna, "gpu_viewport_quality", PROP_FLOAT, PROP_FACTOR);



More information about the Bf-blender-cvs mailing list