aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Arrskog <topfs2@xbmc.org>2014-11-16 15:08:28 +0100
committerTobias Arrskog <topfs2@xbmc.org>2014-11-16 15:08:28 +0100
commit6574e203b22527281fea50d7f3ca57fe60fd1c6c (patch)
treef47ee7f461f4e265328f28d8bfcc1426cd337082
parent2cd94380e3fe59003ffe7938dd3afa34ea10a5c6 (diff)
parent9ee8a039dcdbc5a7ea0527fd0e1460ce19dc681a (diff)
Merge pull request #5729 from Montellese/fix_music_queuing_15545
fix queuing of songs starting playback if something is already playing
-rw-r--r--xbmc/music/windows/GUIWindowMusicBase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/music/windows/GUIWindowMusicBase.cpp b/xbmc/music/windows/GUIWindowMusicBase.cpp
index c15a431f56..81bd47bab4 100644
--- a/xbmc/music/windows/GUIWindowMusicBase.cpp
+++ b/xbmc/music/windows/GUIWindowMusicBase.cpp
@@ -558,7 +558,7 @@ void CGUIWindowMusicBase::OnQueueItem(int iItem)
}
g_playlistPlayer.Add(PLAYLIST_MUSIC, queuedItems);
- if (g_playlistPlayer.GetPlaylist(PLAYLIST_MUSIC).size() && !g_application.m_pPlayer->IsPlayingAudio())
+ if (g_playlistPlayer.GetPlaylist(PLAYLIST_MUSIC).size() && !g_application.m_pPlayer->IsPlaying())
{
if (m_guiState.get())
m_guiState->SetPlaylistDirectory("playlistmusic://");