comparison libvo/x11_common.c @ 1415:4d77492e5d67

new -fsmode flag: 0x8 enables XSetTransientForHint
author arpi
date Sun, 29 Jul 2001 16:40:32 +0000
parents be674b95b485
children e82fbd67ae60
comparison
equal deleted inserted replaced
1414:68e8cd978708 1415:4d77492e5d67
191 if(vo_fsmode&1){ 191 if(vo_fsmode&1){
192 XSetWindowAttributes attr; 192 XSetWindowAttributes attr;
193 attr.override_redirect = True; 193 attr.override_redirect = True;
194 XChangeWindowAttributes(vo_Display, w, CWOverrideRedirect, &attr); 194 XChangeWindowAttributes(vo_Display, w, CWOverrideRedirect, &attr);
195 // XMapWindow(vo_Display], w); 195 // XMapWindow(vo_Display], w);
196 }
197
198 if(vo_fsmode&8){
199 XSetTransientForHint (vo_Display, w, RootWindow(vo_Display,mScreen));
196 } 200 }
197 201
198 vo_MotifHints=XInternAtom( vo_Display,"_MOTIF_WM_HINTS",0 ); 202 vo_MotifHints=XInternAtom( vo_Display,"_MOTIF_WM_HINTS",0 );
199 if ( vo_MotifHints != None ) 203 if ( vo_MotifHints != None )
200 { 204 {