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:
Diffstat (limited to 'source/blender/makesrna/intern/rna_volume.c')
-rw-r--r--source/blender/makesrna/intern/rna_volume.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_volume.c b/source/blender/makesrna/intern/rna_volume.c
index 42d491b734e..d71dcc0700b 100644
--- a/source/blender/makesrna/intern/rna_volume.c
+++ b/source/blender/makesrna/intern/rna_volume.c
@@ -359,7 +359,7 @@ static void rna_def_volume_display(BlenderRNA *brna)
PropertyRNA *prop;
srna = RNA_def_struct(brna, "VolumeDisplay", NULL);
- RNA_def_struct_ui_text(srna, "Volume Display", "Volume object display settings for 3d viewport");
+ RNA_def_struct_ui_text(srna, "Volume Display", "Volume object display settings for 3D viewport");
RNA_def_struct_sdna(srna, "VolumeDisplay");
prop = RNA_def_property(srna, "density", PROP_FLOAT, PROP_NONE);
@@ -604,13 +604,13 @@ static void rna_def_volume(BlenderRNA *brna)
prop = RNA_def_property(srna, "display", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "display");
RNA_def_property_struct_type(prop, "VolumeDisplay");
- RNA_def_property_ui_text(prop, "Display", "Volume display settings for 3d viewport");
+ RNA_def_property_ui_text(prop, "Display", "Volume display settings for 3D viewport");
/* Render */
prop = RNA_def_property(srna, "render", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "render");
RNA_def_property_struct_type(prop, "VolumeRender");
- RNA_def_property_ui_text(prop, "Render", "Volume render settings for 3d viewport");
+ RNA_def_property_ui_text(prop, "Render", "Volume render settings for 3D viewport");
/* Common */
rna_def_animdata_common(srna);