Skip to content
Snippets Groups Projects
Commit b4b7bcc0 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

skins2: don't invoke window API from window

parent 7d4d28d2
No related branches found
No related tags found
No related merge requests found
......@@ -312,6 +312,8 @@ static void WindowCloseLocal( intf_thread_t* pIntf, vlc_object_t *pObj )
VoutManager::instance( pIntf )->releaseWnd( pWnd );
}
static void WindowSetFullscreen( vout_window_t *pWnd, const char * );
static int WindowEnable( vout_window_t *pWnd, const vout_window_cfg_t *cfg )
{
vout_window_skins_t* sys = (vout_window_skins_t *)pWnd->sys;
......@@ -331,7 +333,7 @@ static int WindowEnable( vout_window_t *pWnd, const vout_window_cfg_t *cfg )
}
if (cfg->is_fullscreen)
vout_window_SetFullScreen( pWnd, NULL );
WindowSetFullscreen( pWnd, NULL );
return VLC_SUCCESS;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment