From e5aea3fbdc2cdbad8e98dbaf4bdac2fad9a57dbf Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Sun, 27 Jan 2019 09:17:40 -0600 Subject: [PATCH] Allow homevideos under videos Pictures won't display correctly, but restore previous behavior --- resources/lib/entrypoint/default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/entrypoint/default.py b/resources/lib/entrypoint/default.py index eea1511b..3c46a911 100644 --- a/resources/lib/entrypoint/default.py +++ b/resources/lib/entrypoint/default.py @@ -166,7 +166,7 @@ def listing(): if path: if xbmc.getCondVisibility('Window.IsActive(Pictures)') and node in ('photos', 'homevideos'): directory(label, path, artwork=artwork) - elif xbmc.getCondVisibility('Window.IsActive(Videos)') and node not in ('photos', 'homevideos', 'music', 'audiobooks'): + elif xbmc.getCondVisibility('Window.IsActive(Videos)') and node not in ('photos', 'music', 'audiobooks'): directory(label, path, artwork=artwork, context=context) elif xbmc.getCondVisibility('Window.IsActive(Music)') and node in ('music'): directory(label, path, artwork=artwork, context=context)