diff options
author | Koen Kooi <koen@openembedded.org> | 2009-10-01 14:12:04 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-10-01 14:12:04 +0200 |
commit | 095a13636458f0f4154e618dc7dbe76178942f7c (patch) | |
tree | dd2c553c1afb8b6a2794b0c490ffb876dfad0df4 /recipes/mplayer/files | |
parent | 19473230d3a9b1cb9f2748417957c1aa7fad8c16 (diff) |
mplayer: redraw XV colourkey on every expose
This fixes embedding into gnome-mplayer
Diffstat (limited to 'recipes/mplayer/files')
-rw-r--r-- | recipes/mplayer/files/vo_omapfb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/mplayer/files/vo_omapfb.c b/recipes/mplayer/files/vo_omapfb.c index 2d83b1c851..cb4daff946 100644 --- a/recipes/mplayer/files/vo_omapfb.c +++ b/recipes/mplayer/files/vo_omapfb.c @@ -201,7 +201,7 @@ static void x11_check_events(void) if (e & VO_EVENT_EXPOSE || e & VO_EVENT_RESIZE) { -/* vo_xv_draw_colorkey(drwX, drwY, vo_dwidth - 1, vo_dheight - 1); */ + vo_xv_draw_colorkey(drwX, drwY, vo_dwidth - 1, vo_dheight - 1); omapfb_update(0, 0, 0, 0, 1); } } |