From 1e81188907ea7e819120c9210e4d9b4a5a4dbcef Mon Sep 17 00:00:00 2001 From: Kai Sommerfeld Date: Fri, 5 Jun 2020 23:53:30 +0200 Subject: [PATCH] [video] Re-add 'Mark watched/unwatched' context menu items to content-less video sources. --- xbmc/video/windows/GUIWindowVideoNav.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/video/windows/GUIWindowVideoNav.cpp b/xbmc/video/windows/GUIWindowVideoNav.cpp index 8d78213e633ef..5b8a309173db3 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);