mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 09:47:39 +00:00
Extended the actions column width on Series Grid - FF was creating two rows of buttons.
This commit is contained in:
parent
3c273b9328
commit
04c71ff64c
2 changed files with 3 additions and 1 deletions
|
@ -59,6 +59,8 @@ namespace NzbDrone.Core.Providers.Jobs
|
||||||
|
|
||||||
var countInDb = _episodeProvider.GetEpisodeNumbersBySeason(seriesId, seasonNumber).Count;
|
var countInDb = _episodeProvider.GetEpisodeNumbersBySeason(seriesId, seasonNumber).Count;
|
||||||
|
|
||||||
|
//Todo: Download a full season if more than n% is missing?
|
||||||
|
|
||||||
if (count != countInDb)
|
if (count != countInDb)
|
||||||
{
|
{
|
||||||
//Add the episodes to be processed manually
|
//Add the episodes to be processed manually
|
||||||
|
|
|
@ -85,7 +85,7 @@ NzbDrone
|
||||||
{
|
{
|
||||||
commands.Edit().ButtonType(GridButtonType.Image);
|
commands.Edit().ButtonType(GridButtonType.Image);
|
||||||
commands.Delete().ButtonType(GridButtonType.Image);
|
commands.Delete().ButtonType(GridButtonType.Image);
|
||||||
}).Title("Actions").Width(80);
|
}).Title("Actions").Width(90);
|
||||||
|
|
||||||
})
|
})
|
||||||
.Editable(editor => editor.Mode(GridEditMode.PopUp))
|
.Editable(editor => editor.Mode(GridEditMode.PopUp))
|
||||||
|
|
Loading…
Reference in a new issue