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:
authorJulian Eisel <julian_eisel@web.de>2015-02-13 15:57:48 +0300
committerJulian Eisel <julian_eisel@web.de>2015-02-13 15:57:48 +0300
commitef2f31028edefde733c07df80c8a356cdcfa1423 (patch)
treeb3013496f95564136c2f1887dd84c59d007e848f /source/blender/makesrna/intern
parent90a9415c9a15fafadad7dc97440034303884a272 (diff)
Revert "Fix T43646: VSE preview allows displaying channels down to -5"
This reverts commit e652f781a33b3b31fa95b543bf4003ff7b0c57d6. @schlaile, mentioned in T43646 that this was an intended feature. Checked git history and it's seems like he's right.
Diffstat (limited to 'source/blender/makesrna/intern')
-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 2dc0eb297c0..24c80ccdb02 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -2890,7 +2890,7 @@ static void rna_def_space_sequencer(BlenderRNA *brna)
RNA_def_property_int_sdna(prop, NULL, "chanshown");
RNA_def_property_ui_text(prop, "Display Channel",
"The channel number shown in the image preview. 0 is the result of all strips combined");
- RNA_def_property_range(prop, 1, MAXSEQ);
+ RNA_def_property_range(prop, -5, MAXSEQ);
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, NULL);
prop = RNA_def_property(srna, "preview_channels", PROP_ENUM, PROP_NONE);