mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
fixes #615 - Add settings to control movie/series min backdrop download size
This commit is contained in:
parent
138bad316b
commit
97680efefb
3 changed files with 6 additions and 6 deletions
|
|
@ -220,13 +220,13 @@ namespace MediaBrowser.Model.Configuration
|
|||
/// Gets or sets the width of the min movie backdrop.
|
||||
/// </summary>
|
||||
/// <value>The width of the min movie backdrop.</value>
|
||||
public int MinMovieBackdropWidth { get; set; }
|
||||
public int MinMovieBackdropDownloadWidth { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the width of the min series backdrop.
|
||||
/// </summary>
|
||||
/// <value>The width of the min series backdrop.</value>
|
||||
public int MinSeriesBackdropWidth { get; set; }
|
||||
public int MinSeriesBackdropDownloadWidth { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether [enable people prefix sub folders].
|
||||
|
|
@ -283,8 +283,8 @@ namespace MediaBrowser.Model.Configuration
|
|||
|
||||
SeasonZeroDisplayName = "Specials";
|
||||
|
||||
MinMovieBackdropWidth = 1920;
|
||||
MinSeriesBackdropWidth = 1920;
|
||||
MinMovieBackdropDownloadWidth = 1280;
|
||||
MinSeriesBackdropDownloadWidth = 1280;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue