dragging the playhead now uses continuous grab.

This commit is contained in:
Campbell Barton 2012-10-15 22:45:47 +00:00
parent fe16b26206
commit 59ea74fd6f

@ -172,7 +172,7 @@ static void ANIM_OT_change_frame(wmOperatorType *ot)
ot->poll = change_frame_poll; ot->poll = change_frame_poll;
/* flags */ /* flags */
ot->flag = OPTYPE_BLOCKING | OPTYPE_UNDO; ot->flag = OPTYPE_BLOCKING | OPTYPE_UNDO | OPTYPE_GRAB_POINTER;
/* rna */ /* rna */
RNA_def_int(ot->srna, "frame", 0, MINAFRAME, MAXFRAME, "Frame", "", MINAFRAME, MAXFRAME); RNA_def_int(ot->srna, "frame", 0, MINAFRAME, MAXFRAME, "Frame", "", MINAFRAME, MAXFRAME);