Fix T40412: Moving mask layers does not invalidate mask drawing in the movie clip editor

Issue was caused by a missing WM_event_add_notifier(..) in the mask_layer_move_exec() function...
This commit is contained in:
Thomas Beck 2014-05-28 19:57:53 +02:00
parent 973f95fa9d
commit 11a156255d
Notes: blender-bot 2023-02-14 10:34:13 +01:00
Referenced by issue #40412, Moving mask layers does not invalidate mask drawing in the movie clip editor
1 changed files with 2 additions and 0 deletions

View File

@ -2015,6 +2015,8 @@ static int mask_layer_move_exec(bContext *C, wmOperator *op)
mask->masklay_act++;
}
WM_event_add_notifier(C, NC_MASK | NA_EDITED, mask);
return OPERATOR_FINISHED;
}