[Mplayer-cvslog] CVS: main/libvo vo_quartz.c,1.39,1.40
Nicolas Plourde CVS
syncmail at mplayerhq.hu
Mon Nov 1 18:19:28 CET 2004
CVS change done by Nicolas Plourde CVS
Update of /cvsroot/mplayer/main/libvo
In directory mail:/var2/tmp/cvs-serv11594/libvo
Modified Files:
vo_quartz.c
Log Message:
do not hide mouse and menubar in fulscreen if not using main device
Index: vo_quartz.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_quartz.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- vo_quartz.c 1 Nov 2004 16:17:49 -0000 1.39
+++ vo_quartz.c 1 Nov 2004 17:19:25 -0000 1.40
@@ -1235,8 +1235,11 @@
{
if(winLevel != 0)
{
- HideMenuBar();
- HideCursor();
+ if(device_id == 0)
+ {
+ HideMenuBar();
+ HideCursor();
+ }
}
else
{
@@ -1258,8 +1261,11 @@
{
if(winLevel != 0)
{
- HideMenuBar();
- HideCursor();
+ if(device_id == 0)
+ {
+ HideMenuBar();
+ HideCursor();
+ }
if(fs_res_x != 0 || fs_res_y != 0)
{
More information about the MPlayer-cvslog
mailing list