From 6fccd9ff4d9803cdb0885c034e88929b852dc4a7 Mon Sep 17 00:00:00 2001 From: Anton Kasyanov Date: Tue, 3 Apr 2018 23:37:54 +0300 Subject: [PATCH] Thumbnail can fall behind other windows even if the 'Stay on top' option is activated --- Eve-O-Preview/View/Implementation/ThumbnailView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eve-O-Preview/View/Implementation/ThumbnailView.cs b/Eve-O-Preview/View/Implementation/ThumbnailView.cs index b4cdb8b..238196e 100644 --- a/Eve-O-Preview/View/Implementation/ThumbnailView.cs +++ b/Eve-O-Preview/View/Implementation/ThumbnailView.cs @@ -176,12 +176,12 @@ namespace EveOPreview.View public void SetTopMost(bool enableTopmost) { - // IMO WinForms could check this too if (this._isTopMost == enableTopmost) { return; } + this.TopLevel = enableTopmost; this.TopMost = enableTopmost; this._overlay.TopMost = enableTopmost;