diff --git a/Eve-O-Preview/Configuration/ThumbnailConfig.cs b/Eve-O-Preview/Configuration/ThumbnailConfig.cs index 31acfd1..1a56251 100644 --- a/Eve-O-Preview/Configuration/ThumbnailConfig.cs +++ b/Eve-O-Preview/Configuration/ThumbnailConfig.cs @@ -65,7 +65,22 @@ namespace EveOPreview.Configuration public bool ShowThumbnailFrames { get; set; } public bool EnableActiveClientHighlight { get; set; } - public Color ActiveClientHighlightColor { get; set; } + + public Color ActiveClientHighlightColor + { + get + { + return this._activeClientHighlightColor; + } + set + { + // Some WinForms magic + // True Black color cannot be used as highlight frame color + // So a somewhat less-Black one is used + this._activeClientHighlightColor = (value != Color.Black) ? value : Color.FromArgb(1, 1, 1); + } + } + private Color _activeClientHighlightColor; [JsonProperty] private Dictionary> PerClientLayout { get; set; }