Skip to content

Commit

Permalink
fixed: no video playback in picture slideshow after f704e72 (fixes #1…
Browse files Browse the repository at this point in the history
  • Loading branch information
mkortstiege committed Jul 17, 2011
1 parent 7d687f4 commit 84082cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xbmc/pictures/GUIWindowSlideShow.cpp
Expand Up @@ -703,10 +703,10 @@ bool CGUIWindowSlideShow::OnMessage(CGUIMessage& message)
}
break;
case GUI_MSG_PLAYBACK_STARTED:
{
//only bring the fullscreen on front if we are not in a slideshow
if(!m_bSlideShow)
{
if(m_bSlideShow && m_bPlayingVideo)
g_windowManager.ActivateWindow(WINDOW_FULLSCREEN_VIDEO);
m_bPlayingVideo = false;
}
break;
case GUI_MSG_PLAYBACK_STOPPED:
Expand Down

0 comments on commit 84082cc

Please sign in to comment.