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>2015-03-23 14:51:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-03-23 14:52:33 +0300
commitb8a6cd0140cae6d4da1d17577f60dc7b854fdff1 (patch)
tree0791fbe37027c9545870d624540dc422c9c05ca5 /source/blender/makesrna/intern/rna_object.c
parentc48ebb44ae15b1238a6d86e98fee6cd1ff0cba73 (diff)
Cleanup: comments, style
Diffstat (limited to 'source/blender/makesrna/intern/rna_object.c')
-rw-r--r--source/blender/makesrna/intern/rna_object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c
index a49388866a6..c13d2f9b062 100644
--- a/source/blender/makesrna/intern/rna_object.c
+++ b/source/blender/makesrna/intern/rna_object.c
@@ -2093,8 +2093,8 @@ static void rna_def_object_lodlevel(BlenderRNA *brna)
RNA_def_property_int_sdna(prop, NULL, "obhysteresis");
RNA_def_property_range(prop, 0, 100);
RNA_def_property_ui_range(prop, 0, 100, 10, 1);
- RNA_def_property_ui_text(prop, "Hysteresis %", "Minimum distance change required to transition to the previous"
- " level of detail");
+ RNA_def_property_ui_text(prop, "Hysteresis %",
+ "Minimum distance change required to transition to the previous level of detail");
RNA_def_property_update(prop, NC_OBJECT | ND_LOD, NULL);
prop = RNA_def_property(srna, "object", PROP_POINTER, PROP_NONE);