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@gmail.com>2019-05-26 13:37:51 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-26 13:43:47 +0300
commit66ec6c1f50d2629ec6b120b1bde07c73ddd0824d (patch)
treebc923a8ce29c7342b3c98e00be5647cc62cb4288 /source/blender/makesrna/intern/rna_color.c
parent909b0ac16c26786f864a84e14ec7714c3308d8f0 (diff)
Fix misleading image color space and alpha tooltips
Diffstat (limited to 'source/blender/makesrna/intern/rna_color.c')
-rw-r--r--source/blender/makesrna/intern/rna_color.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_color.c b/source/blender/makesrna/intern/rna_color.c
index 6c4470b19cc..30ab591d3c9 100644
--- a/source/blender/makesrna/intern/rna_color.c
+++ b/source/blender/makesrna/intern/rna_color.c
@@ -1249,7 +1249,10 @@ static void rna_def_colormanage(BlenderRNA *brna)
"rna_ColorManagedColorspaceSettings_colorspace_get",
"rna_ColorManagedColorspaceSettings_colorspace_set",
"rna_ColorManagedColorspaceSettings_colorspace_itemf");
- RNA_def_property_ui_text(prop, "Input Color Space", "Color space of the image or movie on disk");
+ RNA_def_property_ui_text(
+ prop,
+ "Input Color Space",
+ "Color space in the image file, to convert to and from when saving and loading the image");
RNA_def_property_update(prop, NC_WINDOW, "rna_ColorManagedColorspaceSettings_reload_update");
prop = RNA_def_property(srna, "is_data", PROP_BOOLEAN, PROP_NONE);