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

@@ -26,6 +26,8 @@ namespace EveOPreview.Configuration
List<string> CycleGroup5BackwardHotkeys { get; set; }
Dictionary<string, int> CycleGroup5ClientsOrder { get; set; }
string ToggleTrackingHotkey { get; set; }
Dictionary<string, Color> PerClientActiveClientHighlightColor { get; set; }
Dictionary<string, Size> PerClientThumbnailSize { get; set; }
@@ -89,6 +91,7 @@ namespace EveOPreview.Configuration
bool IsPriorityClient(string currentClient);
bool IsExecutableToPreview(string processName);
List<string> ExecutablesToPreview { get; set; }
bool IsThumbnailDisabled(string currentClient);
void ToggleThumbnail(string currentClient, bool isDisabled);