feat(Eve-O-Preview): add hotkey to toggle all thumbnails and update target framework

This commit is contained in:
2025-08-29 23:35:58 +02:00
parent 368e5e88c1
commit dbee1a03d3
4 changed files with 30 additions and 2 deletions

View File

@@ -124,6 +124,8 @@ namespace EveOPreview.Configuration.Implementation {
this.IconName = "";
this.LoginThumbnailLocation = new Point(5, 5);
this.ToggleAllThumbnailsHotkey = "Alt+F12";
this.ThumbnailsManuallyHidden = false;
}
[JsonProperty("ConfigVersion")]
@@ -318,6 +320,16 @@ namespace EveOPreview.Configuration.Implementation {
get; set;
}
[JsonProperty("ToggleAllThumbnailsHotkey")]
public string ToggleAllThumbnailsHotkey {
get; set;
}
[JsonProperty("ThumbnailsManuallyHidden")]
public bool ThumbnailsManuallyHidden {
get; set;
}
[JsonProperty]
private Dictionary<string, Dictionary<string, Point>> PerClientLayout {
get; set;