From a810539a1948c9e7d5c46039b69ec642ec3b8f46 Mon Sep 17 00:00:00 2001 From: Anton Kasyanov Date: Thu, 29 Mar 2018 01:17:46 +0300 Subject: [PATCH] Adjusted thumbnail snap areas --- Eve-O-Preview/Services/Implementation/ThumbnailManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Eve-O-Preview/Services/Implementation/ThumbnailManager.cs b/Eve-O-Preview/Services/Implementation/ThumbnailManager.cs index caf41e9..15b9de1 100644 --- a/Eve-O-Preview/Services/Implementation/ThumbnailManager.cs +++ b/Eve-O-Preview/Services/Implementation/ThumbnailManager.cs @@ -495,8 +495,8 @@ namespace EveOPreview.Services Point[] viewPoints = { new Point(baseX, baseY), new Point(baseX + width, baseY), new Point(baseX, baseY + height), new Point(baseX + width, baseY + height) }; // TODO Extract constants - int thresholdX = Math.Max(20, width / 5); - int thresholdY = Math.Max(20, height / 5); + int thresholdX = Math.Max(20, width / 10); + int thresholdY = Math.Max(20, height / 10); foreach (var entry in this._thumbnailViews) {