From 12bb55f52d4b5e0c90c1625e243fed949d203d3e Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 1 Aug 2013 16:34:36 -0700 Subject: [PATCH] Added indexer name to manual search --- NzbDrone.Core/Indexers/IndexerBase.cs | 2 +- UI/Episode/Search/ManualLayout.js | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/NzbDrone.Core/Indexers/IndexerBase.cs b/NzbDrone.Core/Indexers/IndexerBase.cs index 34fca36ff..229c420dd 100644 --- a/NzbDrone.Core/Indexers/IndexerBase.cs +++ b/NzbDrone.Core/Indexers/IndexerBase.cs @@ -18,7 +18,7 @@ namespace NzbDrone.Core.Indexers yield return new IndexerDefinition { Name = Name, - Enable = true, + Enable = EnableByDefault, Implementation = GetType().Name, Settings = String.Empty }; diff --git a/UI/Episode/Search/ManualLayout.js b/UI/Episode/Search/ManualLayout.js index cf0ca1aeb..3ff73bc11 100644 --- a/UI/Episode/Search/ManualLayout.js +++ b/UI/Episode/Search/ManualLayout.js @@ -31,6 +31,12 @@ define( sortable: true, cell : Backgrid.StringCell }, + { + name : 'indexer', + label : 'Indexer', + sortable: true, + cell : Backgrid.StringCell + }, { name : 'size', label : 'Size',