From 71c0889fa9b5b8f3d2f85c327abbdcca8eb3a907 Mon Sep 17 00:00:00 2001 From: Anton Kasyanov Date: Sun, 5 Jun 2016 21:46:23 +0300 Subject: [PATCH] After the thumbnail is zoomed it its position is resynced --- Eve-O-Preview/Presentation/ThumbnailManager.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Eve-O-Preview/Presentation/ThumbnailManager.cs b/Eve-O-Preview/Presentation/ThumbnailManager.cs index d79f023..bada1ac 100644 --- a/Eve-O-Preview/Presentation/ThumbnailManager.cs +++ b/Eve-O-Preview/Presentation/ThumbnailManager.cs @@ -122,13 +122,15 @@ namespace EveOPreview.UI continue; } - view.Location = this._configuration.GetThumbnailLocation(view.Title, this._activeClientTitle, view.Location); - view.IsOverlayEnabled = this._configuration.ShowThumbnailOverlays; if (!this._isHoverEffectActive) { + // No need to move Thumbnails while one of them is highlighted + view.Location = this._configuration.GetThumbnailLocation(view.Title, this._activeClientTitle, view.Location); view.SetOpacity(this._configuration.ThumbnailsOpacity); } + view.IsOverlayEnabled = this._configuration.ShowThumbnailOverlays; + if (!view.IsActive) { view.Show();