Merge pull request #60 from Proopai/bugfix/59-label-still-visible-when-thumbnail-disabled

#59 fix to only show overlay label when option enabled and thumbnail visible
This commit is contained in:
DalShooth
2025-02-18 08:35:44 -07:00
committed by GitHub

View File

@@ -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)
{