#71 implement new icon set and allow configuration via IconName in configuration json.

This commit is contained in:
Izakbar
2025-04-04 10:52:23 +01:00
parent 3177c80c66
commit bfcb7916e3
19 changed files with 967 additions and 885 deletions

View File

@@ -131,6 +131,8 @@ namespace EveOPreview.Configuration.Implementation
this.OverlayLabelColor = Color.Orange;
this.OverlayLabelSize = 10;
this.IconName = "";
this.LoginThumbnailLocation = new Point(5, 5);
}
@@ -262,6 +264,8 @@ namespace EveOPreview.Configuration.Implementation
public Color ActiveClientHighlightColor { get; set; }
public Color OverlayLabelColor { get; set; }
public int OverlayLabelSize { get; set; }
public string IconName { get; set; }
public int ActiveClientHighlightThickness { get; set; }
[JsonProperty("LoginThumbnailLocation")]