#59 fix to only show overlay label when option enabled and thumbnail visible

This commit is contained in:
Izakbar
2025-02-18 10:32:01 +00:00
parent 098d553553
commit e305b952d5

View File

@@ -423,7 +423,8 @@ namespace EveOPreview.View
return; 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) if (!this._isOverlayVisible)
{ {