Commit 15bfa02e authored by Antoine Cellerier's avatar Antoine Cellerier

rss.c: Using [19378] (visible region persitence in freetype font renderer),...

rss.c: Using [19378] (visible region persitence in freetype font renderer), only display one line of text if the font size option was set.
parent 606c3980
......@@ -471,6 +471,8 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
}
p_spu->p_region->psz_text = strdup(p_sys->psz_marquee);
if( p_sys->p_style->i_font_size > 0 )
p_spu->p_region->fmt.i_visible_height = p_sys->p_style->i_font_size;
p_spu->i_start = date;
p_spu->i_stop = 0;
p_spu->b_ephemer = VLC_TRUE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment