Changeset 8e36c7bdbf2cb369233f7dd064cd84d5c73577fe

Show
Ignore:
Timestamp:
05/10/08 14:03:40 (2 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1210421020 +0200
git-parent:

[65f6489e561f6dfeda6d12b103ccd35992c4d098]

git-author:
Rafaël Carré <funman@videolan.org> 1210421020 +0200
Message:

Disable video-on-top on win32 when going fullscreen

Fix #1227

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/video_output/msw/events.c

    r6300760 r8e36c7b  
    12061206            HWND topLevelParent = GetAncestor( p_vout->p_sys->hparent, GA_ROOT ); 
    12071207            ShowWindow( topLevelParent, SW_HIDE ); 
     1208 
     1209            /* Disable "video-on-top" status for main interface if needed */ 
     1210            if( var_GetBool( p_vout, "video-on-top" ) ) 
     1211                ControlParentWindow( p_vout, VOUT_SET_STAY_ON_TOP, false ); 
    12081212        } 
    12091213