Skip to content

Commit

Permalink
Change 'ScaledBorderAndShadow' default to '0'.
Browse files Browse the repository at this point in the history
This is *VSFilter compatible and fixes libass#287 .
  • Loading branch information
TheOneric committed Apr 11, 2020
1 parent e514062 commit 46372b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libass/ass.c
Expand Up @@ -1319,7 +1319,7 @@ ASS_Track *ass_new_track(ASS_Library *library)
if (!track)
return NULL;
track->library = library;
track->ScaledBorderAndShadow = 1;
track->ScaledBorderAndShadow = 0;
track->parser_priv = calloc(1, sizeof(ASS_ParserPriv));
if (!track->parser_priv) {
free(track);
Expand Down

0 comments on commit 46372b2

Please sign in to comment.