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>2018-11-09 12:05:06 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-11-25 01:43:03 +0300
commit487af39c990ffdb207339964964fe3a5a5fa9c04 (patch)
treec9b17e9c1fb4363a3fecbed2e242e5489a9074e4 /source/blender/makesrna/intern/rna_sequencer.c
parent7c19d9e9af1a5631073f177fe5f212d2643a7424 (diff)
Sequencer: remove unnecessary limit on transform rotation.
Diffstat (limited to 'source/blender/makesrna/intern/rna_sequencer.c')
-rw-r--r--source/blender/makesrna/intern/rna_sequencer.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index e78bce9170d..5057d62774d 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -2310,7 +2310,6 @@ static void rna_def_transform(StructRNA *srna)
prop = RNA_def_property(srna, "rotation_start", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_sdna(prop, NULL, "rotIni");
- RNA_def_property_range(prop, -360.0f, 360.0f);
RNA_def_property_ui_text(prop, "Rotation", "Degrees to rotate the input");
RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_update");