aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-01 20:28:16 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-01 20:28:16 -0400
commit0690b4f2e09608b9f25ebb8ef9a325b57135e529 (patch)
tree051661ff804a5a5f58402e534df96b5ea59c7a93 /MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
parent4aa959c1e266442804b6961aeb2d09f4b812f744 (diff)
Add user cinema mode setting
Diffstat (limited to 'MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs')
-rw-r--r--MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs6
1 files changed, 0 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;
}
}
}