diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-04 10:25:06 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-04 10:25:06 -0500 |
| commit | 97680efefbe31b177ee900612772dbdbe4e38ea0 (patch) | |
| tree | 958caab50b56cb1110b9570e15dfc4fecd5e1f5f /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | 138bad316b87e2867d8aa5aa07a47747d096bceb (diff) | |
fixes #615 - Add settings to control movie/series min backdrop download size
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index d0eff49fa..1f75969be 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -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; } } |
