New: Added Color-Impaired mode to UI settings.

This commit is contained in:
Taloth Saldono 2015-04-22 00:14:16 +02:00
parent 2f7e3c1c3c
commit b4e8a39c2c
8 changed files with 88 additions and 1 deletions

View file

@ -282,6 +282,13 @@ namespace NzbDrone.Core.Configuration
set { SetValue("ShowRelativeDates", value); }
}
public Boolean EnableColorImpairedMode
{
get { return GetValueBoolean("EnableColorImpairedMode", false); }
set { SetValue("EnableColorImpairedMode", value); }
}
public bool CleanupMetadataImages
{
get { return GetValueBoolean("CleanupMetadataImages", true); }