diff options
author | jmarshallnz <jmarshallnz@svn> | 2010-07-01 03:35:12 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2010-07-01 03:35:12 +0000 |
commit | 1e9d8ba66aefea11d61130dca90e452a55726946 (patch) | |
tree | 44216184fd2110f83881abffc1e2912f544442a5 | |
parent | eaec3d0d02778110bf23f7ab05141795c70564cc (diff) |
fixed: Regression in r26223 that caused folder thumbs to not be updated from the movie information dialog.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@31541 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | xbmc/GUIWindowVideoBase.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xbmc/GUIWindowVideoBase.cpp b/xbmc/GUIWindowVideoBase.cpp index e2c107898f..8a1eac50ef 100644 --- a/xbmc/GUIWindowVideoBase.cpp +++ b/xbmc/GUIWindowVideoBase.cpp @@ -344,6 +344,10 @@ void CGUIWindowVideoBase::OnInfo(CFileItem* pItem, const ADDON::ScraperPtr& scra } } + // we need to also request any thumbs be applied to the folder item + if (pItem->m_bIsFolder) + item.SetProperty("set_folder_thumb", pItem->m_strPath); + bool modified = ShowIMDB(&item, scraper); if (modified && (g_windowManager.GetActiveWindow() == WINDOW_VIDEO_FILES || |