fix(ThumbnailManager.cs): set default location change notification delay to 0 to improve responsiveness

This commit is contained in:
2025-08-29 22:52:15 +02:00
parent dfed1f4d69
commit 368e5e88c1

View File

@@ -23,7 +23,7 @@ namespace EveOPreview.Services {
private const int WINDOW_POSITION_THRESHOLD_HIGH = 31_000;
private const int WINDOW_SIZE_THRESHOLD = 10;
private const int FORCED_REFRESH_CYCLE_THRESHOLD = 2;
private const int DEFAULT_LOCATION_CHANGE_NOTIFICATION_DELAY = 2;
private const int DEFAULT_LOCATION_CHANGE_NOTIFICATION_DELAY = 0;
private const string DEFAULT_CLIENT_TITLE = "EVE";
#endregion