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 <brechtvanlommel@pandora.be>2011-11-02 16:18:51 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-11-02 16:18:51 +0400
commit3d35e004d35faf45968c0cead7d758a5599a2bcc (patch)
tree4a7fd3fa0c28336501851a988b31ce2607370ae7
parente29aa363f21b945404b9e7e3702d67432236c067 (diff)
Related to #29092: make the working of the Mist Intensity option more clear in
the user interface.
-rw-r--r--release/scripts/startup/bl_ui/properties_world.py2
-rw-r--r--source/blender/makesrna/intern/rna_world.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_world.py b/release/scripts/startup/bl_ui/properties_world.py
index 71ee03296a0..23f35d6d1e9 100644
--- a/release/scripts/startup/bl_ui/properties_world.py
+++ b/release/scripts/startup/bl_ui/properties_world.py
@@ -227,7 +227,7 @@ class WORLD_PT_mist(WorldButtonsPanel, Panel):
split = layout.split()
col = split.column()
- col.prop(world.mist_settings, "intensity", slider=True)
+ col.prop(world.mist_settings, "intensity")
col.prop(world.mist_settings, "start")
col = split.column()
diff --git a/source/blender/makesrna/intern/rna_world.c b/source/blender/makesrna/intern/rna_world.c
index 22570460093..d07050eaab5 100644
--- a/source/blender/makesrna/intern/rna_world.c
+++ b/source/blender/makesrna/intern/rna_world.c
@@ -393,7 +393,7 @@ static void rna_def_world_mist(BlenderRNA *brna)
prop= RNA_def_property(srna, "intensity", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_sdna(prop, NULL, "misi");
RNA_def_property_range(prop, 0, 1);
- RNA_def_property_ui_text(prop, "Intensity", "Intensity of the mist effect");
+ RNA_def_property_ui_text(prop, "Minimum", "Overall minimum intensity of the mist effect");
RNA_def_property_update(prop, 0, "rna_World_update");
prop= RNA_def_property(srna, "start", PROP_FLOAT, PROP_DISTANCE);