From cc76d8af71133327015fa83f1a1a12b6bf65f42f Mon Sep 17 00:00:00 2001 From: vanhofen Date: Sat, 30 Mar 2019 00:26:48 +0100 Subject: [PATCH] moviebrowser: reset selected item in MB_FOCUS_LAST_PLAY after deleting any movie Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/54f162a41a9448b756fddb533fa52968d0570a3f Author: vanhofen Date: 2019-03-30 (Sat, 30 Mar 2019) Origin message was: ------------------ - moviebrowser: reset selected item in MB_FOCUS_LAST_PLAY after deleting any movie ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/moviebrowser/mb.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/moviebrowser/mb.cpp b/src/gui/moviebrowser/mb.cpp index 3f2200165..573e815f3 100644 --- a/src/gui/moviebrowser/mb.cpp +++ b/src/gui/moviebrowser/mb.cpp @@ -1026,6 +1026,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; @@ -2208,6 +2210,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)