vo_gl: Fix libass subtitles disappearing during pause

EOSD bitmaps were not properly redrawn when the screen was updated
to change other OSD content, resulting in libass subtitles
disappearing if the OSD changed while paused. Fixed by adding a call
to redraw the EOSD part too.
This commit is contained in:
Uoti Urpala 2009-03-22 04:26:59 +02:00
parent ebcb5a7154
commit 7af8417ae7
1 changed files with 2 additions and 0 deletions

View File

@ -1205,6 +1205,8 @@ static int control(uint32_t request, void *data)
if (vo_doublebuffering)
do_render();
draw_osd();
if (vo_doublebuffering)
do_render_osd(2);
flip_page();
return VO_TRUE;
}