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:
authorBrecht Van Lommel <brecht@blender.org>2020-05-13 18:11:22 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-05-13 22:22:06 +0300
commit2bc5c18714256cddf3a1ab9ab4dee2d2c0f9685d (patch)
treeb93e4d61b0ea82034f23af8805917844425e4abe
parent5e96c438546932ca875aa35afb8c73f9a68d62a1 (diff)
Fix wrong Volume object step size tooltip
-rw-r--r--source/blender/makesrna/intern/rna_volume.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_volume.c b/source/blender/makesrna/intern/rna_volume.c
index 25b5395b35c..b03d6082cea 100644
--- a/source/blender/makesrna/intern/rna_volume.c
+++ b/source/blender/makesrna/intern/rna_volume.c
@@ -441,7 +441,7 @@ static void rna_def_volume_render(BlenderRNA *brna)
RNA_def_property_ui_range(prop, 0.0, 100.0, 1, 3);
RNA_def_property_ui_text(prop,
"Step Size",
- "Distance between volume samples. Higher values render more detail at "
+ "Distance between volume samples. Lower values render more detail at "
"the cost of performance. If set to zero, the step size is "
"automatically determined based on voxel size");
RNA_def_property_update(prop, 0, "rna_Volume_update_display");