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>2012-04-14 20:24:30 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-04-14 20:24:30 +0400
commit6c285ce1a62bdbccd6135eee6455baea70d67885 (patch)
treef475e0c14b8edbd6e7d938581c7e43a53e08e9f7 /source/blender/makesrna
parent9cd72eef995ae730f3fd30276db997c845b7b40c (diff)
Minor fix to UI messages.
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 5e0a20c51ad..8d4b5a32969 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -1355,7 +1355,7 @@ static void rna_def_background_image(BlenderRNA *brna)
prop = RNA_def_property(srna, "show_on_foreground", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", V3D_BGPIC_FOREGROUND);
- RNA_def_property_ui_text(prop, "Show On Foreground", "Show this image in fround of objects in viewport");
+ RNA_def_property_ui_text(prop, "Show On Foreground", "Show this image in front of objects in viewport");
RNA_def_property_update(prop, NC_SPACE|ND_SPACE_VIEW3D, NULL);
}