show dvdnav selection in the OSD only when the osd_level>1; patch by foxcore gmail com

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25915 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nicodvb 2008-01-29 21:38:23 +00:00
parent 1dc1db13a1
commit 4c1fa58fbc
1 changed files with 2 additions and 2 deletions

View File

@ -3098,7 +3098,7 @@ int run_command(MPContext * mpctx, mp_cmd_t * cmd)
pointer_y = (int) (dy * (double) sh_video->disp_h); pointer_y = (int) (dy * (double) sh_video->disp_h);
mp_dvdnav_update_mouse_pos(mpctx->stream, mp_dvdnav_update_mouse_pos(mpctx->stream,
pointer_x, pointer_y, &button); pointer_x, pointer_y, &button);
if (button > 0) if (osd_level > 1 && button > 0)
set_osd_msg(OSD_MSG_TEXT, 1, osd_duration, set_osd_msg(OSD_MSG_TEXT, 1, osd_duration,
"Selected button number %d", button); "Selected button number %d", button);
} }
@ -3117,7 +3117,7 @@ int run_command(MPContext * mpctx, mp_cmd_t * cmd)
break; break;
mp_dvdnav_handle_input(mpctx->stream,cmd->args[0].v.i,&button); 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, set_osd_msg(OSD_MSG_TEXT, 1, osd_duration,
"Selected button number %d", button); "Selected button number %d", button);
} }