Banshee.Sources.Gui.CategorySourceView.ShouldShowSource C# (CSharp) Method

ShouldShowSource() private method

private ShouldShowSource ( Source source ) : bool
source Source
return bool
        private bool ShouldShowSource(Source source)
        {
            return source != null && source.Parent == null &&
                !source.UniqueId.StartsWith ("NowPlayingSource") &&
                !source.UniqueId.StartsWith ("PlayQueueSource");
        }