Browse Source

Add ShowBackdrop to DisplayPreferences.cs

Eric Reed 12 years ago
parent
commit
94af5c36df
1 changed files with 6 additions and 0 deletions
  1. 6 0
      MediaBrowser.Model/Entities/DisplayPreferences.cs

+ 6 - 0
MediaBrowser.Model/Entities/DisplayPreferences.cs

@@ -22,6 +22,7 @@ namespace MediaBrowser.Model.Entities
             RememberIndexing = false;
             PrimaryImageHeight = 250;
             PrimaryImageWidth = 250;
+            ShowBackdrop = true;
             CustomPrefs = new Dictionary<string, string>();
         }
 
@@ -71,6 +72,11 @@ namespace MediaBrowser.Model.Entities
         /// <value>The scroll direction.</value>
         public ScrollDirection ScrollDirection { get; set; }
         /// <summary>
+        /// Gets or sets a value indicating whether to show backdrops on this item.
+        /// </summary>
+        /// <value><c>true</c> if showing backdrops; otherwise, <c>false</c>.</value>
+        public bool ShowBackdrop { get; set; }
+        /// <summary>
         /// Gets or sets a value indicating whether [remember sorting].
         /// </summary>
         /// <value><c>true</c> if [remember sorting]; otherwise, <c>false</c>.</value>