fixed user image scaling

This commit is contained in:
Luke Pulverenti
2014-05-02 10:49:28 -04:00
parent c7c72dd1a8
commit 3228f50895
9 changed files with 74 additions and 43 deletions

View File

@@ -123,12 +123,6 @@ namespace MediaBrowser.Model.Configuration
/// <value><c>true</c> if [show log window]; otherwise, <c>false</c>.</value>
public bool ShowLogWindow { get; set; }
/// <summary>
/// Gets or sets the recent item days.
/// </summary>
/// <value>The recent item days.</value>
public int RecentItemDays { get; set; }
/// <summary>
/// Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated.
/// </summary>
@@ -227,9 +221,6 @@ namespace MediaBrowser.Model.Configuration
public NotificationOptions NotificationOptions { get; set; }
[Obsolete("Please use RequireManualLoginForMobileApps")]
public string[] ManualLoginClients { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
/// </summary>
@@ -258,8 +249,6 @@ namespace MediaBrowser.Model.Configuration
RealtimeMonitorDelay = 30;
RecentItemDays = 10;
EnableInternetProviders = true; //initial installs will need these
PathSubstitutions = new PathSubstitution[] { };
@@ -295,8 +284,6 @@ namespace MediaBrowser.Model.Configuration
UICulture = "en-us";
NotificationOptions = new NotificationOptions();
ManualLoginClients = new string[] { };
}
}