feat(hotkeys): add hotkey configuration for toggling tracking and single process

This commit is contained in:
2025-08-29 23:44:39 +02:00
parent dbee1a03d3
commit a9cdb69e0f
10 changed files with 228 additions and 8 deletions

View File

@@ -124,6 +124,8 @@ namespace EveOPreview.Configuration.Implementation {
this.IconName = "";
this.LoginThumbnailLocation = new Point(5, 5);
this.ToggleTrackingHotkey = "Alt+F16";
this.ToggleSingleProcessHotkey = "Control+F16";
this.ToggleAllThumbnailsHotkey = "Alt+F12";
this.ThumbnailsManuallyHidden = false;
}
@@ -320,6 +322,11 @@ namespace EveOPreview.Configuration.Implementation {
get; set;
}
[JsonProperty("ToggleSingleProcessHotkey")]
public string ToggleSingleProcessHotkey {
get; set;
}
[JsonProperty("ToggleAllThumbnailsHotkey")]
public string ToggleAllThumbnailsHotkey {
get; set;