Skip to content

Commit

Permalink
Even though it seems insane, music stops playing inbetween tracks of …
Browse files Browse the repository at this point in the history
…a playlist
  • Loading branch information
elan committed May 5, 2009
1 parent 3415339 commit 45a9ecc
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions xbmc/utils/GUIInfoManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1944,6 +1944,10 @@ bool CGUIInfoManager::GetBool(int condition1, DWORD dwContextWindow, const CGUIL
{
bReturn = m_slideshowShowDescription;
}
else if (condition == MUSICPLAYER_NOW_PLAYING_FLIPPED)
{
bReturn = m_nowPlayingFlipped;
}
else if (g_application.IsPlaying())
{
switch (condition)
Expand Down Expand Up @@ -2070,11 +2074,6 @@ bool CGUIInfoManager::GetBool(int condition1, DWORD dwContextWindow, const CGUIL
}
}
break;
case MUSICPLAYER_NOW_PLAYING_FLIPPED:
{
bReturn = m_nowPlayingFlipped;
}
break;
case MUSICPLAYER_PLAYLISTPLAYING:
{
bReturn = false;
Expand Down

0 comments on commit 45a9ecc

Please sign in to comment.