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:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-03-26 19:48:20 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-03-26 19:48:20 +0400
commit22000aa2fc74c3ebd8a9469fe52cff6006e0e52d (patch)
tree40f1eba5ba96e6ec663fbfa44d613d08f582bf8f /source/blender/editors/space_sequencer
parente1db5a050d2be78836a389705003595df29e1eb7 (diff)
Wrong soft/hard limits used in r55600
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 68362a1c6e4..516ec6f3a0d 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -1082,7 +1082,7 @@ void SEQUENCER_OT_insert_gap(struct wmOperatorType *ot)
/* flags */
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
- RNA_def_int(ot->srna, "frames", 10, 0, 1000, "Frames", "Frames to insert after current strip", 0, INT_MAX);
+ RNA_def_int(ot->srna, "frames", 10, 0, INT_MAX, "Frames", "Frames to insert after current strip", 0, 1000);
}