Make CTRL-T track windows with scroll lock on

This commit is contained in:
2025-06-26 17:47:38 +02:00
parent 435710c350
commit eabda5da67
3 changed files with 170 additions and 1 deletions

View File

@@ -264,6 +264,7 @@ namespace EveOPreview.Configuration.Implementation
public Color ActiveClientHighlightColor { get; set; }
public Color OverlayLabelColor { get; set; }
public int OverlayLabelSize { get; set; }
[JsonProperty("IconName")]
public string IconName { get; set; }
public int ActiveClientHighlightThickness { get; set; }
@@ -271,6 +272,9 @@ namespace EveOPreview.Configuration.Implementation
[JsonProperty("LoginThumbnailLocation")]
public Point LoginThumbnailLocation { get; set; }
[JsonProperty("ToggleTrackingHotkey")]
public string ToggleTrackingHotkey { get; set; }
[JsonProperty]
private Dictionary<string, Dictionary<string, Point>> PerClientLayout { get; set; }
[JsonProperty]
@@ -284,7 +288,7 @@ namespace EveOPreview.Configuration.Implementation
[JsonProperty]
private List<string> PriorityClients { get; set; }
[JsonProperty]
private List<string> ExecutablesToPreview { get; set; }
public List<string> ExecutablesToPreview { get; set; }
public Point GetThumbnailLocation(string currentClient, string activeClient, Point defaultLocation)
{