From e305b952d51ae4b329bd9a38b09a678d5e1f00be Mon Sep 17 00:00:00 2001 From: Izakbar Date: Tue, 18 Feb 2025 10:32:01 +0000 Subject: [PATCH] #59 fix to only show overlay label when option enabled and thumbnail visible --- src/Eve-O-Preview/View/Implementation/ThumbnailView.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Eve-O-Preview/View/Implementation/ThumbnailView.cs b/src/Eve-O-Preview/View/Implementation/ThumbnailView.cs index 941dbf0..15de0c1 100644 --- a/src/Eve-O-Preview/View/Implementation/ThumbnailView.cs +++ b/src/Eve-O-Preview/View/Implementation/ThumbnailView.cs @@ -423,7 +423,8 @@ namespace EveOPreview.View return; } - this._overlay.EnableOverlayLabel(this.IsOverlayEnabled); + // Only show overlay if enabled AND thumbnail is active/visible. + this._overlay.EnableOverlayLabel(this.IsOverlayEnabled && this.Visible); if (!this._isOverlayVisible) {