moviebrowser: set focus in StartPosSelectionMenu to last play stop if it exists

Origin commit data
------------------
Branch: ni/coolstream
Commit: 9b0a37bef4
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-07-15 (Sun, 15 Jul 2018)

Origin message was:
------------------
- moviebrowser: set focus in StartPosSelectionMenu to last play stop if it exists

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2018-07-15 00:41:40 +02:00
parent 853752003a
commit 01a0bfe8ea

View File

@@ -3688,13 +3688,13 @@ int CMovieBrowser::showStartPosSelectionMenu(void) // P2
if (m_movieSelectionHandler->bookmarks.start != 0)
{
got_start_pos = true;
startPosSelectionMenu.addItem(new CMenuForwarder(LOCALE_MOVIEBROWSER_BOOK_MOVIESTART, true, start_pos), true);
position[menu_nr++] = m_movieSelectionHandler->bookmarks.start;
}
if (m_movieSelectionHandler->bookmarks.lastPlayStop != 0)
{
startPosSelectionMenu.addItem(new CMenuForwarder(LOCALE_MOVIEBROWSER_BOOK_LASTMOVIESTOP, true, play_pos));
got_start_pos = true;
startPosSelectionMenu.addItem(new CMenuForwarder(LOCALE_MOVIEBROWSER_BOOK_LASTMOVIESTOP, true, play_pos), true);
position[menu_nr++] = m_movieSelectionHandler->bookmarks.lastPlayStop;
}