aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Configuration')
-rw-r--r--MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs6
-rw-r--r--MediaBrowser.Model/Configuration/UserConfiguration.cs3
2 files changed, 3 insertions, 6 deletions
diff --git a/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
index 15f7de6ad5..8154e764a4 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 e515c31863..46eb0c7332 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;
}
}
}