Skip to content

Commit

Permalink
Merge pull request #9545 from phil65/smartplaylisteditor_fix
Browse files Browse the repository at this point in the history
[gui] fix bug when opening playlists with smartplaylisteditor several times
  • Loading branch information
Philipp Temminghoff committed Oct 6, 2016
2 parents 0aacf5c + be61ecf commit b57c736
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions xbmc/dialogs/GUIDialogSmartPlaylistEditor.cpp
Expand Up @@ -183,6 +183,11 @@ bool CGUIDialogSmartPlaylistEditor::OnMessage(CGUIMessage& message)
}
}
break;
case GUI_MSG_WINDOW_DEINIT:
{
m_playlist.Reset();
}
break;
}
return CGUIDialog::OnMessage(message);
}
Expand Down

0 comments on commit b57c736

Please sign in to comment.