From 8919befdb4eebafaacd79d315135289361cfa650 Mon Sep 17 00:00:00 2001 From: jmarshallnz Date: Thu, 1 May 2014 19:01:49 +1200 Subject: [PATCH] Merge pull request #4626 from Voyager1/fix-trac15163 [fix] only check video playlist status to determine fullscreen playback --- xbmc/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp index 5e31453..b9383f0 100644 --- a/xbmc/Application.cpp +++ b/xbmc/Application.cpp @@ -4026,7 +4026,7 @@ PlayBackRet CApplication::PlayFile(const CFileItem& item, bool bRestart) // this really aught to be inside !bRestart, but since PlayStack // uses that to init playback, we have to keep it outside int playlist = g_playlistPlayer.GetCurrentPlaylist(); - if (item.IsVideo() && g_playlistPlayer.GetPlaylist(playlist).size() > 1) + if (item.IsVideo() && playlist == PLAYLIST_VIDEO && g_playlistPlayer.GetPlaylist(playlist).size() > 1) { // playing from a playlist by the looks // don't switch to fullscreen if we are not playing the first item... options.fullscreen = !g_playlistPlayer.HasPlayedFirstFile() && g_advancedSettings.m_fullScreenOnMovieStart && !CMediaSettings::Get().DoesVideoStartWindowed(); -- 2.7.4