diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-01 20:28:16 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-01 20:28:16 -0400 |
| commit | 0690b4f2e09608b9f25ebb8ef9a325b57135e529 (patch) | |
| tree | 051661ff804a5a5f58402e534df96b5ea59c7a93 /MediaBrowser.Model/Configuration | |
| parent | 4aa959c1e266442804b6961aeb2d09f4b812f744 (diff) | |
Add user cinema mode setting
Diffstat (limited to 'MediaBrowser.Model/Configuration')
| -rw-r--r-- | MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs | 6 | ||||
| -rw-r--r-- | MediaBrowser.Model/Configuration/UserConfiguration.cs | 3 |
2 files changed, 3 insertions, 6 deletions
diff --git a/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs index 15f7de6ad..8154e764a 100644 --- a/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs +++ b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs @@ -8,7 +8,6 @@ namespace MediaBrowser.Model.Configuration public bool EnableIntrosForWatchedContent { get; set; } public bool EnableIntrosFromUpcomingTrailers { get; set; } public bool EnableIntrosFromMoviesInLibrary { get; set; } - public bool EnableCustomIntro { get; set; } public bool EnableIntrosParentalControl { get; set; } public string CustomIntroPath { get; set; } public bool EnableIntrosFromUpcomingDvdMovies { get; set; } @@ -16,12 +15,7 @@ namespace MediaBrowser.Model.Configuration public CinemaModeConfiguration() { - EnableCustomIntro = true; - EnableIntrosFromMoviesInLibrary = true; - EnableIntrosFromUpcomingTrailers = true; EnableIntrosParentalControl = true; - EnableIntrosFromUpcomingDvdMovies = true; - EnableIntrosFromUpcomingStreamingMovies = true; } } } diff --git a/MediaBrowser.Model/Configuration/UserConfiguration.cs b/MediaBrowser.Model/Configuration/UserConfiguration.cs index e515c3186..46eb0c733 100644 --- a/MediaBrowser.Model/Configuration/UserConfiguration.cs +++ b/MediaBrowser.Model/Configuration/UserConfiguration.cs @@ -84,6 +84,8 @@ namespace MediaBrowser.Model.Configuration public bool IncludeTrailersInSuggestions { get; set; } + public bool EnableCinemaMode { get; set; } + /// <summary> /// Initializes a new instance of the <see cref="UserConfiguration" /> class. /// </summary> @@ -108,6 +110,7 @@ namespace MediaBrowser.Model.Configuration SyncConnectName = true; SyncConnectImage = true; IncludeTrailersInSuggestions = true; + EnableCinemaMode = true; } } } |
