Skip to content

Commit

Permalink
fix smartplaylist editor showing incorrect types due to not resetting…
Browse files Browse the repository at this point in the history
… the spinner on window deinit
  • Loading branch information
Jonathan Marshall committed Nov 2, 2012
1 parent db72953 commit 8e75466
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmc/dialogs/GUIDialogSmartPlaylistEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,8 @@ void CGUIDialogSmartPlaylistEditor::OnInitWindow()
void CGUIDialogSmartPlaylistEditor::OnDeinitWindow(int nextWindowID)
{
CGUIDialog::OnDeinitWindow(nextWindowID);
CGUIMessage msg(GUI_MSG_LABEL_RESET, GetID(), CONTROL_RULE_LIST);
OnMessage(msg);
SendMessage(GUI_MSG_LABEL_RESET, CONTROL_RULE_LIST);
SendMessage(GUI_MSG_LABEL_RESET, CONTROL_TYPE);
m_ruleLabels->Clear();
}

Expand Down

0 comments on commit 8e75466

Please sign in to comment.