Fix T42277: Apply track's mask on displaying preview not working

This commit is contained in:
Sergey Sharybin 2014-10-31 12:59:55 +01:00
parent 7bb910cd4e
commit 46c11c7b7d
Notes: blender-bot 2023-02-14 09:56:32 +01:00
Referenced by issue #42277, Apply track's mask on displaying preview not working
1 changed files with 1 additions and 1 deletions

View File

@ -1261,7 +1261,7 @@ void BKE_movieclip_update_scopes(MovieClip *clip, MovieClipUser *user, MovieClip
scopes->frame_width = ibuf->x;
scopes->frame_height = ibuf->y;
scopes->use_track_mask = track->flag & TRACK_PREVIEW_ALPHA;
scopes->use_track_mask = (track->flag & TRACK_PREVIEW_ALPHA) != 0;
}
IMB_freeImBuf(ibuf);