From 1b35d8dd738afbc04faddcf2bfcae39fe706bab7 Mon Sep 17 00:00:00 2001 From: Anton Kasyanov Date: Thu, 25 Mar 2021 20:42:16 +0200 Subject: [PATCH] 189: [Bug] Name overlay is still diplayed on top of all windows when the preview itself is overlapped by other windows --- src/Eve-O-Preview/View/Implementation/ThumbnailView.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Eve-O-Preview/View/Implementation/ThumbnailView.cs b/src/Eve-O-Preview/View/Implementation/ThumbnailView.cs index 558e56b..682fade 100644 --- a/src/Eve-O-Preview/View/Implementation/ThumbnailView.cs +++ b/src/Eve-O-Preview/View/Implementation/ThumbnailView.cs @@ -216,9 +216,8 @@ namespace EveOPreview.View return; } - this.TopLevel = enableTopmost; - this.TopMost = enableTopmost; this._overlay.TopMost = enableTopmost; + this.TopMost = enableTopmost; this._isTopMost = enableTopmost; }