From 04c71ff64c8e314d015d3faeb5474ac2005f1ecb Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 23 Nov 2011 16:39:21 -0800 Subject: [PATCH] Extended the actions column width on Series Grid - FF was creating two rows of buttons. --- NzbDrone.Core/Providers/Jobs/BacklogSearchJob.cs | 2 ++ NzbDrone.Web/Views/Series/Index.cshtml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NzbDrone.Core/Providers/Jobs/BacklogSearchJob.cs b/NzbDrone.Core/Providers/Jobs/BacklogSearchJob.cs index aa53b9b5d..a0c1d71c6 100644 --- a/NzbDrone.Core/Providers/Jobs/BacklogSearchJob.cs +++ b/NzbDrone.Core/Providers/Jobs/BacklogSearchJob.cs @@ -59,6 +59,8 @@ namespace NzbDrone.Core.Providers.Jobs var countInDb = _episodeProvider.GetEpisodeNumbersBySeason(seriesId, seasonNumber).Count; + //Todo: Download a full season if more than n% is missing? + if (count != countInDb) { //Add the episodes to be processed manually diff --git a/NzbDrone.Web/Views/Series/Index.cshtml b/NzbDrone.Web/Views/Series/Index.cshtml index 03208a7e4..20f17f398 100644 --- a/NzbDrone.Web/Views/Series/Index.cshtml +++ b/NzbDrone.Web/Views/Series/Index.cshtml @@ -85,7 +85,7 @@ NzbDrone { commands.Edit().ButtonType(GridButtonType.Image); commands.Delete().ButtonType(GridButtonType.Image); - }).Title("Actions").Width(80); + }).Title("Actions").Width(90); }) .Editable(editor => editor.Mode(GridEditMode.PopUp))