Wrong soft/hard limits used in r55600

This commit is contained in:
Sergey Sharybin
2013-03-26 15:48:20 +00:00
parent e1db5a050d
commit 22000aa2fc

View File

@@ -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);
}