- moviebrowser: reset selected item in MB_FOCUS_LAST_PLAY after deleting any movie

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2019-03-30 00:26:48 +01:00
committed by Thilo Graf
parent d5f6f33e6f
commit 104229dacf

View File

@@ -1019,6 +1019,8 @@ int CMovieBrowser::exec(CMenuTarget* parent, const std::string & actionKey)
m_doRefresh = true;
returnval = menu_return::RETURN_EXIT;
}
if (m_windowFocus == MB_FOCUS_LAST_PLAY)
m_pcLastPlay->setSelectedLine(0);
}
}
return returnval;
@@ -2186,6 +2188,8 @@ bool CMovieBrowser::onButtonPressMainFrame(neutrino_msg_t msg)
if (m_movieSelectionHandler != NULL)
{
onDelete();
if (m_windowFocus == MB_FOCUS_LAST_PLAY)
m_pcLastPlay->setSelectedLine(0);
}
}
else if (msg == CRCInput::RC_help)