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:
authorBastien Montagne <montagne29@wanadoo.fr>2017-07-27 16:20:44 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-07-27 16:20:44 +0300
commit1bd9531fda793b108e0d6868d2e2df930aabfec2 (patch)
treea31c98daaef0d8618a9bf1488536be4f42a46f2b
parent4003409430404c1be91d44460a770dfc9ce46135 (diff)
Fix UI messages...
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 7a978c35810..80e0712aa07 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -3927,17 +3927,17 @@ static void rna_def_userdef_system(BlenderRNA *brna)
prop = RNA_def_property(srna, "dpi", PROP_INT, PROP_NONE);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_ui_text(prop, "DPI",
- "DPI for addons to use when drawing custom user interface elements. Controlled by "
- "operating system settings and Blender UI scale, with a reference value of 72 DPI. "
- "Note that since this value includes a user defined scale, it is not always the "
- "actual monitor DPI");
+ "DPI for add-ons to use when drawing custom user interface elements, controlled by "
+ "operating system settings and Blender UI scale, with a reference value of 72 DPI "
+ "(note that since this value includes a user defined scale, it is not always the "
+ "actual monitor DPI)");
prop = RNA_def_property(srna, "pixel_size", PROP_FLOAT, PROP_NONE);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_float_sdna(prop, NULL, "pixelsize");
RNA_def_property_ui_text(prop, "Pixel Size",
- "Suggested line thickness and point size in pixels, for addons drawing custom user "
- "interface elements. Controlled by operating system settings and Blender UI scale");
+ "Suggested line thickness and point size in pixels, for add-ons drawing custom user "
+ "interface elements, controlled by operating system settings and Blender UI scale");
prop = RNA_def_property(srna, "font_path_ui", PROP_STRING, PROP_FILEPATH);
RNA_def_property_string_sdna(prop, NULL, "font_path_ui");