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:
authorCampbell Barton <ideasman42@gmail.com>2017-07-18 05:12:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-07-18 05:14:18 +0300
commit66383ea206d882fd8737c8e8da5355095e614bc8 (patch)
tree6b380e0b8d57dc5c7bbb47c98c8da4c622645165
parent16fc2ad28ef5918ce22426d21f1d9fe6be4b23bd (diff)
Cleanup: quiet picky warnings
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 224efbbde7a..7a978c35810 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -3930,14 +3930,14 @@ static void rna_def_userdef_system(BlenderRNA *brna)
"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.");
+ "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.");
+ "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");