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>2015-03-24 23:36:26 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-03-24 23:36:26 +0300
commit41ed59e0ebe23d99f3cc394d03ff629417e6115a (patch)
tree197ef7a24f0fd0a50086b1a772c1a4515ce3fdfd /source/blender/makesrna/intern
parent2ba82d5729a5f687537c2c26ca6e53750aef201c (diff)
Minor UI message fix.
Diffstat (limited to 'source/blender/makesrna/intern')
-rw-r--r--source/blender/makesrna/intern/rna_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c
index c13d2f9b062..73206ea310c 100644
--- a/source/blender/makesrna/intern/rna_object.c
+++ b/source/blender/makesrna/intern/rna_object.c
@@ -2118,7 +2118,7 @@ static void rna_def_object_lodlevel(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_object_hysteresis", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flags", OB_LOD_USE_HYST);
- RNA_def_property_ui_text(prop, "Hysteresis Override", "Override LoD Hysteresis scene setting for this Lod Level");
+ RNA_def_property_ui_text(prop, "Hysteresis Override", "Override LoD Hysteresis scene setting for this LoD level");
RNA_def_property_update(prop, NC_OBJECT | ND_LOD, NULL);
}