Skip to content

Commit

Permalink
video: fix "Set content" showing for library folders (genres etc.)
Browse files Browse the repository at this point in the history
  • Loading branch information
Montellese committed Aug 2, 2013
1 parent 926ab48 commit bff7a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/video/windows/GUIWindowVideoNav.cpp
Expand Up @@ -1052,7 +1052,7 @@ void CGUIWindowVideoNav::GetContextButtons(int itemNumber, CContextButtons &butt
buttons.Add(CONTEXT_BUTTON_RENAME, 118);
}
// add "Set/Change content" to folders
if (item->m_bIsFolder && !item->IsPlayList() && !item->IsSmartPlayList() && !item->IsLiveTV() && !item->IsPlugin() && !item->IsAddonsPath() && !URIUtils::IsUPnP(item->GetPath()))
if (item->m_bIsFolder && !item->IsVideoDb() && !item->IsPlayList() && !item->IsSmartPlayList() && !item->IsLibraryFolder() && !item->IsLiveTV() && !item->IsPlugin() && !item->IsAddonsPath() && !URIUtils::IsUPnP(item->GetPath()))
{
if (!g_application.IsVideoScanning())
{
Expand Down

0 comments on commit bff7a8f

Please sign in to comment.