Mercurial > mplayer.hg
changeset 25887:36bc17c090a6
show dvdnav selection in the OSD only when the osd_level>1; patch by foxcore gmail com
author | nicodvb |
---|---|
date | Tue, 29 Jan 2008 21:38:23 +0000 |
parents | feb0f4e3c81f |
children | 1822b5ad9860 |
files | command.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/command.c Tue Jan 29 19:05:36 2008 +0000 +++ b/command.c Tue Jan 29 21:38:23 2008 +0000 @@ -3098,7 +3098,7 @@ pointer_y = (int) (dy * (double) sh_video->disp_h); mp_dvdnav_update_mouse_pos(mpctx->stream, pointer_x, pointer_y, &button); - if (button > 0) + if (osd_level > 1 && button > 0) set_osd_msg(OSD_MSG_TEXT, 1, osd_duration, "Selected button number %d", button); } @@ -3117,7 +3117,7 @@ break; mp_dvdnav_handle_input(mpctx->stream,cmd->args[0].v.i,&button); - if (button > 0) + if (osd_level > 1 && button > 0) set_osd_msg(OSD_MSG_TEXT, 1, osd_duration, "Selected button number %d", button); }