Commit 42ed348c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4-X11: cannot embed video if wallpaper mode is on

parent add3a2b1
......@@ -539,6 +539,10 @@ static int WindowOpen( vlc_object_t *p_obj )
/* */
if( p_wnd->cfg->is_standalone )
return VLC_EGENERIC;
#if defined (Q_WS_X11)
if( var_InheritBool( p_obj, "video-wallpaper" ) )
return VLC_EGENERIC;
#endif
vlc_value_t val;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment