[Commits] : Tuxbox-GIT: apps branch master updated. CVS-Final-333-ga6db629
Tuxbox Sources
Brought to you by:
dbt1
|
From: Thilo G. <tux...@ne...> - 2014-01-13 14:35:52
|
Project "Tuxbox-GIT: apps":
The branch, master has been updated
via a6db6293464565ac79c5e52a1358fbea51353e7d (commit)
from 151df1b8164d2bdfdc03bdbb049686c038a7cff8 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a6db6293464565ac79c5e52a1358fbea51353e7d
Author: Christian Schuett <Gau...@ho...>
Date: Sat Jan 11 15:09:46 2014 +0100
Neutrino moviebrowser: update series names even if file without is deleted
the series names list is not correct anymore after deleting a file or
editing a series name
Signed-off-by: Christian Schuett <Gau...@ho...>
Signed-off-by: Thilo Graf <db...@no...>
diff --git a/tuxbox/neutrino/src/gui/moviebrowser.cpp b/tuxbox/neutrino/src/gui/moviebrowser.cpp
index 50b4ff8..04e36cb 100644
--- a/tuxbox/neutrino/src/gui/moviebrowser.cpp
+++ b/tuxbox/neutrino/src/gui/moviebrowser.cpp
@@ -2195,7 +2195,7 @@ void CMovieBrowser::onDeleteFile(MI_MOVIE_INFO& movieSelectionHandler)
hintBox.hide();
g_RCInput->clearRCMsg();
- if (!movieSelectionHandler.serieName.empty())
+ if (!m_vHandleSerienames.empty())
m_seriename_stale = true;
m_vMovieInfo.erase( (std::vector<MI_MOVIE_INFO>::iterator)&movieSelectionHandler);
updateSerienames();
@@ -3108,6 +3108,7 @@ int CMovieBrowser::showMovieInfoMenu(MI_MOVIE_INFO* movie_info)
int returnval = movieInfoMenu.exec(NULL,"");
+ updateSerienames();
for(int i =0 ; i < MI_MOVIE_BOOK_USER_MAX && i < MAX_NUMBER_OF_BOOKMARK_ITEMS; i++ )
{
delete pBookNameInput[i] ;
-----------------------------------------------------------------------
Summary of changes:
tuxbox/neutrino/src/gui/moviebrowser.cpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
--
Tuxbox-GIT: apps
|