Skip to content

Commit

Permalink
Merge pull request #4667 from Dennnnny/fix-transparent-foreground-color
Browse files Browse the repository at this point in the history
Fix transparent foreground color
  • Loading branch information
Tyriar committed Aug 14, 2023
2 parents caa1223 + 855e911 commit c908eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/browser/renderer/shared/TextureAtlas.ts
Expand Up @@ -299,7 +299,7 @@ export class TextureAtlas implements ITextureAtlas {
case Attributes.CM_DEFAULT:
default:
if (inverse) {
result = this._config.colors.foreground;
result = color.opaque(this._config.colors.foreground);
} else {
result = this._config.colors.background;
}
Expand Down

0 comments on commit c908eee

Please sign in to comment.