aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Sommerfeld <kai.sommerfeld@gmx.com>2020-06-05 23:53:30 +0200
committerKai Sommerfeld <kai.sommerfeld@gmx.com>2020-06-08 19:58:12 +0200
commit1e81188907ea7e819120c9210e4d9b4a5a4dbcef (patch)
tree52adc10600bb0ceb32cb99c878879855f4799e13
parenta5bfdcd4fbb08bc5029e21852acb0c2bafec5cb0 (diff)
[video] Re-add 'Mark watched/unwatched' context menu items to content-less video sources.
-rw-r--r--xbmc/video/windows/GUIWindowVideoNav.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/video/windows/GUIWindowVideoNav.cpp b/xbmc/video/windows/GUIWindowVideoNav.cpp
index 8d78213e63..5b8a309173 100644
--- a/xbmc/video/windows/GUIWindowVideoNav.cpp
+++ b/xbmc/video/windows/GUIWindowVideoNav.cpp
@@ -591,7 +591,7 @@ void CGUIWindowVideoNav::LoadVideoInfo(CFileItemList &items, CVideoDatabase &dat
CFileItemPtr pItem = items[i];
CFileItemPtr match;
- if (!content.empty() && pItem->m_bIsFolder && !pItem->IsParentFolder())
+ if (pItem->m_bIsFolder && !pItem->IsParentFolder())
{
// we need this for enabling the right context menu entries, like mark watched / unwatched
pItem->SetProperty("IsVideoFolder", true);