diff --git a/pomice/player.py b/pomice/player.py index 302565d..929a446 100644 --- a/pomice/player.py +++ b/pomice/player.py @@ -33,6 +33,11 @@ class Filters: """Property which checks if any applied filters were preloaded""" return any(f for f in self._filters if f.preload == True) + @property + def has_global(self): + """Property which checks if any applied filters are global""" + return any(f for f in self._filters if f.preload == False) + @property def empty(self): """Property which checks if the filter list is empty"""